mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-22 15:50:15 -05:00
23 lines
456 B
PHP
23 lines
456 B
PHP
<?php
|
|
|
|
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();
|
|
}
|
|
}
|