mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-20 04:14:24 +02:00
monitoring: Fix PHPDoc in DeleteCommentCommand
This commit is contained in:
parent
5d01dca291
commit
dd7d078704
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user