Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
13 | class TenantLogout |
||
14 | { |
||
15 | use UsesLandlordConnection; |
||
16 | |||
17 | /** |
||
18 | * Create the event listener. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function __construct() |
||
24 | // |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Handle the event. |
||
29 | * |
||
30 | * @param Logout $event |
||
31 | * @return void |
||
32 | */ |
||
33 | public function handle(Logout $event) |
||
43 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.