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