mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-05-28 04:34:08 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
26 lines
567 B
PHP
26 lines
567 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Icinga\Module\Businessprocess\Clicommands;
|
|
|
|
class CheckCommand extends ProcessCommand
|
|
{
|
|
public function listActions()
|
|
{
|
|
return array('process');
|
|
}
|
|
|
|
/**
|
|
* 'check process' is DEPRECATED, please use 'process check' instead
|
|
*
|
|
* USAGE
|
|
*
|
|
* icingacli businessprocess check process [--config <name>] <process>
|
|
*/
|
|
public function processAction()
|
|
{
|
|
$this->checkAction();
|
|
}
|
|
}
|