Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | trait HasExpiredFlagHelpers |
||
17 | { |
||
18 | public function initializeHasExpiredFlagHelpers(): void |
||
21 | } |
||
22 | |||
23 | public function isExpired(): bool |
||
24 | { |
||
25 | return $this->getAttributeValue('is_expired'); |
||
26 | } |
||
27 | |||
28 | public function isNotExpired(): bool |
||
31 | } |
||
32 | |||
33 | public function expire(): void |
||
39 | } |
||
40 | |||
41 | public function undoExpire(): void |
||
49 |