| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class EventServiceProvider extends BaseEventServiceProvider |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * {@inheritdoc} |
||
| 20 | */ |
||
| 21 | 101 | public function listens() |
|
| 22 | { |
||
| 23 | return [ |
||
| 24 | 101 | UnauthorizedOwner::class => $this->getUnauthorizedOwnerListeners(), |
|
| 25 | ]; |
||
| 26 | } |
||
| 27 | |||
| 28 | 101 | private function getUnauthorizedOwnerListeners(): array |
|
| 37 | } |
||
| 38 | } |
||
| 39 |