Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | trait HasAcceptedAtHelpers |
||
19 | { |
||
20 | public function initializeHasAcceptedAtHelpers(): void |
||
23 | } |
||
24 | |||
25 | public function isAccepted(): bool |
||
26 | { |
||
27 | return !is_null($this->getAttributeValue('accepted_at')); |
||
28 | } |
||
29 | |||
30 | public function isNotAccepted(): bool |
||
33 | } |
||
34 | |||
35 | public function accept(): void |
||
41 | } |
||
42 | |||
43 | public function undoAccept(): void |
||
51 |