monitoring/commands: Rename `InstanceCommandForm' to `CommandForm'
Since the old `CommandForm' is removed, `InstanceCommandForm' is now the new base class for all command forms. refs #6593
This commit is contained in:
parent
4b210f95ea
commit
c27c5690ba
|
@ -2,7 +2,7 @@
|
||||||
// {{{ICINGA_LICENSE_HEADER}}}
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
// {{{ICINGA_LICENSE_HEADER}}}
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
|
||||||
namespace Icinga\Module\Monitoring\Form\Command\Instance;
|
namespace Icinga\Module\Monitoring\Form\Command;
|
||||||
|
|
||||||
use Icinga\Module\Monitoring\Backend;
|
use Icinga\Module\Monitoring\Backend;
|
||||||
use Icinga\Module\Monitoring\Command\Transport\CommandTransport;
|
use Icinga\Module\Monitoring\Command\Transport\CommandTransport;
|
||||||
|
@ -10,9 +10,9 @@ use Icinga\Web\Form;
|
||||||
use Icinga\Web\Request;
|
use Icinga\Web\Request;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class for forms that handle program-wide commands
|
* Base class for command forms
|
||||||
*/
|
*/
|
||||||
abstract class InstanceCommandForm extends Form
|
abstract class CommandForm extends Form
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Monitoring backend
|
* Monitoring backend
|
Loading…
Reference in New Issue