From df3d81e181e468e1c3672717ce6f1d08e549c1ac Mon Sep 17 00:00:00 2001 From: Marius Hein Date: Thu, 12 Mar 2015 16:30:11 +0100 Subject: [PATCH] SendCustomNotificationCommand: Update phpdoc strings refs #8644 --- .../Command/Object/SendCustomNotificationCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/monitoring/library/Monitoring/Command/Object/SendCustomNotificationCommand.php b/modules/monitoring/library/Monitoring/Command/Object/SendCustomNotificationCommand.php index 88446a5aa..83f054295 100644 --- a/modules/monitoring/library/Monitoring/Command/Object/SendCustomNotificationCommand.php +++ b/modules/monitoring/library/Monitoring/Command/Object/SendCustomNotificationCommand.php @@ -9,20 +9,20 @@ namespace Icinga\Module\Monitoring\Command\Object; class SendCustomNotificationCommand extends WithCommentCommand { /** - * (non-PHPDoc) - * @see \Icinga\Module\Monitoring\Command\Object\ObjectCommand::$allowedObjects For the property documentation. + * {@inheritdoc} */ protected $allowedObjects = array( self::TYPE_HOST, self::TYPE_SERVICE ); + /** * Whether a notification is forced to send * * Forced notifications are send regardless of time and if notifications * are enabled. * - * @type bool + * @var bool */ protected $forced; @@ -32,7 +32,7 @@ class SendCustomNotificationCommand extends WithCommentCommand * If broadcast is true, the notification is send to all normal and * escalated contacts for the object * - * @type bool + * @var bool */ protected $broadcast;