From 0a01eb66b1f42a334ff4c1baa71d7847e2877618 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 28 Jul 2015 13:34:39 +0200 Subject: [PATCH] monitoring: Remove unnecessary use w/ backslash in DeleteDowntimesCommandForm refs #9449 --- .../Command/Object/DeleteDowntimesCommandForm.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/monitoring/application/forms/Command/Object/DeleteDowntimesCommandForm.php b/modules/monitoring/application/forms/Command/Object/DeleteDowntimesCommandForm.php index 4a19cac96..3d13866ec 100644 --- a/modules/monitoring/application/forms/Command/Object/DeleteDowntimesCommandForm.php +++ b/modules/monitoring/application/forms/Command/Object/DeleteDowntimesCommandForm.php @@ -4,7 +4,7 @@ namespace Icinga\Module\Monitoring\Forms\Command\Object; use Icinga\Module\Monitoring\Command\Object\DeleteDowntimeCommand; -use \Icinga\Module\Monitoring\Forms\Command\CommandForm; +use Icinga\Module\Monitoring\Forms\Command\CommandForm; use Icinga\Web\Notification; /** @@ -18,7 +18,7 @@ class DeleteDowntimesCommandForm extends CommandForm * @var array */ protected $downtimes; - + /** * (non-PHPDoc) * @see \Zend_Form::init() For the method documentation. @@ -43,7 +43,7 @@ class DeleteDowntimesCommandForm extends CommandForm )); return $this; } - + /** * (non-PHPDoc) * @see \Icinga\Web\Form::getSubmitLabel() For the method documentation. @@ -52,7 +52,7 @@ class DeleteDowntimesCommandForm extends CommandForm { return $this->translatePlural('Remove', 'Remove All', count($this->downtimes)); } - + /** * (non-PHPDoc) * @see \Icinga\Web\Form::onSuccess() For the method documentation. @@ -72,7 +72,7 @@ class DeleteDowntimesCommandForm extends CommandForm Notification::success($this->translate('Deleting downtime.')); return true; } - + /** * Set the downtimes to be deleted upon success *