blob: c853b257f7f54010cc007d54d14a675e6a860a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Command\Object;
/**
* Add a comment to a host or service
*/
class AddCommentCommand extends WithCommentCommand
{
/**
* Optional time when the acknowledgement should expire
*
* @var int
*/
protected $expireTime;
/**
* Set the time when the acknowledgement should expire
*
* @param int $expireTime
*
* @return $this
*/
public function setExpireTime(int $expireTime): self
{
$this->expireTime = $expireTime;
return $this;
}
/**
* Get the time when the acknowledgement should expire
*
* @return ?int
*/
public function getExpireTime()
{
return $this->expireTime;
}
}
|