Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function subscribe($events) |
||
35 | { |
||
36 | $events->listen( |
||
37 | 'Lincable\Eloquent\Events\UploadSuccess', |
||
38 | 'Lincable\Eloquent\Subscribers\UploadSubscriber@onSuccess' |
||
39 | ); |
||
40 | |||
41 | $events->listen( |
||
42 | 'Lincable\Eloquent\Events\UploadFailure', |
||
43 | 'Lincable\Eloquent\Subscribers\UploadSubscriber@onFailure' |
||
44 | ); |
||
47 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.