Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | trait HasEndedFlagHelpers |
||
17 | { |
||
18 | public function initializeHasEndedFlagHelpers(): void |
||
21 | } |
||
22 | |||
23 | public function isEnded(): bool |
||
26 | } |
||
27 | |||
28 | public function isNotEnded(): bool |
||
29 | { |
||
30 | return !$this->isEnded(); |
||
31 | } |
||
32 | |||
33 | public function end(): void |
||
39 | } |
||
40 | |||
41 | public function undoEnd(): void |
||
49 |