monitoring: Fix PHPDoc in DeleteDowntimeCommand
This commit is contained in:
parent
dd7d078704
commit
919c7c52cf
|
@ -27,17 +27,20 @@ class DeleteDowntimeCommand extends IcingaCommand
|
|||
/**
|
||||
* Set if this command affects a service
|
||||
*
|
||||
* @param type $value
|
||||
* @param bool $isService
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setIsService($value = true)
|
||||
public function setIsService($isService = true)
|
||||
{
|
||||
$this->isService = (bool) $value;
|
||||
$this->isService = (bool) $isService;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return whether the command affects a service
|
||||
*
|
||||
* @return type
|
||||
* @return bool
|
||||
*/
|
||||
public function getIsService()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue