Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1.008 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | 1 | public function sendPeriodicalNotification(string $group = 'default') |
|
27 | { |
||
28 | 1 | dispatch(function () use ($group) { |
|
29 | $this->sendNowPeriodicalNotification($group); |
||
30 | 1 | })->onConnection(config('periodic-notice.defaults.connection')) |
|
31 | 1 | ->onQueue(config('periodic-notice.defaults.queue')); |
|
32 | } |
||
34 |