Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class AnalyticTrackedListener |
||
20 | { |
||
21 | /** |
||
22 | * The name of the queue the job should be sent to. |
||
23 | * |
||
24 | * @var string|null |
||
25 | */ |
||
26 | public $queue = 'analytics'; |
||
27 | |||
28 | /** |
||
29 | * Create the event listener. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function __construct() |
||
34 | { |
||
35 | // |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Handle the event. |
||
40 | * |
||
41 | * @param AnalyticTracked $event |
||
42 | * @return void |
||
43 | */ |
||
44 | public function handle(AnalyticTracked $event) |
||
47 | } |
||
48 | } |
||
49 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.