monitoring: Fix PHPDoc in DeleteCommentCommand

This commit is contained in:
Eric Lippmann 2015-07-28 13:32:45 +02:00
parent 5d01dca291
commit dd7d078704
1 changed files with 4 additions and 4 deletions

View File

@ -60,13 +60,13 @@ class DeleteCommentCommand extends IcingaCommand
/** /**
* Set whether the command affects a service * 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; return $this;
} }
} }