1 | <?php |
||
20 | trait IntegerMaxDurationTrait { |
||
21 | |||
22 | /** |
||
23 | * Max duration. |
||
24 | * |
||
25 | * @var int |
||
26 | */ |
||
27 | private $maxDuration; |
||
28 | |||
29 | /** |
||
30 | * Get the max duration. |
||
31 | * |
||
32 | * @return int Returns the max duration. |
||
33 | */ |
||
34 | public function getMaxDuration() { |
||
37 | |||
38 | /** |
||
39 | * Set the max duration. |
||
40 | * |
||
41 | * @param int $maxDuration The max duration. |
||
42 | */ |
||
43 | public function setMaxDuration($maxDuration) { |
||
47 | } |
||
48 |