Total Complexity | 6 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 86.67% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class PeriodicPublicationNotification extends Notification implements ShouldQueue |
||
11 | { |
||
12 | use Queueable; |
||
13 | use HasDynamicChannels { |
||
14 | HasDynamicChannels::via as dynamicVia; |
||
15 | } |
||
16 | |||
17 | 2 | public function __construct( |
|
20 | 2 | } |
|
21 | |||
22 | 1 | public function via($notifiable) |
|
29 | } |
||
30 | |||
31 | 1 | protected function mailMessageBuilder($notifiable): MailMessageBuilder |
|
39 | } |
||
40 | |||
41 | 1 | public function toMail($notifiable) |
|
48 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.