Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
8 | class ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * @var \Illuminate\Contracts\Container\Container |
||
12 | */ |
||
13 | protected $app; |
||
14 | |||
15 | public function __construct(Container $app) |
||
16 | { |
||
17 | $this->app = $app; |
||
18 | } |
||
19 | |||
20 | public function register() |
||
25 | } |
||
26 | |||
27 | protected function registerEventProvider() |
||
28 | { |
||
29 | (new \Illuminate\Events\EventServiceProvider($this->app))->register(); |
||
30 | } |
||
31 | |||
32 | protected function registerViewProvider() |
||
38 | }); |
||
39 | } |
||
40 | } |