From dd7d078704254e7994a750187293d2a083fc82df Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 28 Jul 2015 13:32:45 +0200 Subject: [PATCH] monitoring: Fix PHPDoc in DeleteCommentCommand --- .../Monitoring/Command/Object/DeleteCommentCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/monitoring/library/Monitoring/Command/Object/DeleteCommentCommand.php b/modules/monitoring/library/Monitoring/Command/Object/DeleteCommentCommand.php index 75f2ffb8e..f3cbbc4cb 100644 --- a/modules/monitoring/library/Monitoring/Command/Object/DeleteCommentCommand.php +++ b/modules/monitoring/library/Monitoring/Command/Object/DeleteCommentCommand.php @@ -60,13 +60,13 @@ class DeleteCommentCommand extends IcingaCommand /** * Set whether the command affects a service * - * @param boolean $value The value, defaults to true + * @param bool $isService * - * @return this fluent interface + * @return $this */ - public function setIsService($value = true) + public function setIsService($isService = true) { - $this->isService = (bool) $value; + $this->isService = (bool) $isService; return $this; } }