icingaweb2-module-businessp.../application/clicommands/CheckCommand.php
Eric Lippmann 0ce3381488 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-11 20:44:42 +01:00

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();
}
}