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; } }