Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | abstract class AbstractEventServiceProvider implements ServiceProviderContract |
||
12 | { |
||
13 | /** |
||
14 | * @var array $events |
||
15 | */ |
||
16 | protected $events = []; |
||
17 | |||
18 | /** |
||
19 | * @inheritDoc |
||
20 | */ |
||
21 | public function register(): void |
||
25 | } |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Binds handlers to events |
||
30 | * |
||
31 | * @access protected |
||
32 | * @return void |
||
33 | */ |
||
34 | protected function bindEvents(): void |
||
49 |