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:
Eric Lippmann 2014-09-02 09:55:38 +02:00
parent 4b210f95ea
commit c27c5690ba
1 changed files with 3 additions and 3 deletions

View File

@ -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