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