mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-24 22:34:24 +02:00
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
|
* 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 whether the command affects a service
|
||||||
*
|
*
|
||||||
* @return type
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function getIsService()
|
public function getIsService()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user