Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ProcessDispatchAudit implements ShouldQueue |
||
11 | { |
||
12 | 15 | public function viaConnection(): string |
|
15 | } |
||
16 | |||
17 | 15 | public function viaQueue(): string |
|
18 | { |
||
19 | 15 | return Config::get('audit.queue.queue', 'default'); |
|
20 | } |
||
21 | |||
22 | public function withDelay(DispatchAudit $event): int |
||
25 | } |
||
26 | |||
27 | 15 | public function handle(DispatchAudit $event): void |
|
30 | } |
||
31 | } |
||
32 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.