| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | trait TtlTrait |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var int|null |
||
| 27 | */ |
||
| 28 | protected $ttl = null; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Set the maximum time to live (ttl) |
||
| 32 | * |
||
| 33 | * @param int|null $value Seconds or null to live forever |
||
| 34 | * @throws InvalidArgumentException |
||
| 35 | */ |
||
| 36 | 34 | protected function setTtlOption(?int $value): void |
|
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the maximum time to live (ttl) |
||
| 47 | * |
||
| 48 | * @return int|null |
||
| 49 | */ |
||
| 50 | 23 | protected function getTtlOption(): ?int |
|
| 53 | } |
||
| 54 | } |