| Total Complexity | 8 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class EventSubscriber |
||
| 10 | { |
||
| 11 | /** @var Valet */ |
||
| 12 | protected $valet; |
||
| 13 | |||
| 14 | public function __construct(Valet $valet) |
||
| 15 | { |
||
| 16 | $this->valet = $valet; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function siteSecured(SiteSecured $event) |
||
| 23 | } |
||
| 24 | } |
||
| 25 | |||
| 26 | public function siteUnsecured(SiteUnsecured $event) |
||
| 30 | } |
||
| 31 | } |
||
| 32 | |||
| 33 | public function siteRemoved(SiteRemoved $event) |
||
| 37 | } |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Register the listeners for the subscriber. |
||
| 42 | * |
||
| 43 | * @param \Illuminate\Events\Dispatcher $events |
||
| 44 | * |
||
| 45 | * @return void |
||
| 46 | */ |
||
| 47 | public function subscribe($events) |
||
| 54 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.