Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 88.89% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | trait HasPeriodicNotice |
||
15 | { |
||
16 | 1 | public function periodicSentEntries(): MorphMany |
|
19 | } |
||
20 | |||
21 | 1 | public function sendNowPeriodicalNotification(string $group = 'default') |
|
22 | { |
||
23 | 1 | $this->periodicNoticeDirector($group)->sendPeriodicalNotification($this); |
|
24 | } |
||
25 | |||
26 | 1 | public function sendPeriodicalNotification(string $group = 'default') |
|
32 | } |
||
33 | } |
||
34 |