Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | trait HasPublishedAtHelpers |
||
19 | { |
||
20 | public function initializeHasPublishedAtHelpers(): void |
||
23 | } |
||
24 | |||
25 | public function isPublished(): bool |
||
26 | { |
||
27 | return !is_null($this->getAttributeValue('published_at')); |
||
28 | } |
||
29 | |||
30 | public function isNotPublished(): bool |
||
33 | } |
||
34 | |||
35 | public function publish(): void |
||
41 | } |
||
42 | |||
43 | public function unpublish(): void |
||
51 |