monitoring: Fix PHPDoc in DeleteDowntimeCommand

This commit is contained in:
Eric Lippmann 2015-07-28 13:33:07 +02:00
parent dd7d078704
commit 919c7c52cf
1 changed files with 8 additions and 5 deletions

View File

@ -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()
{