Total Complexity | 4 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class HermesServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap any package services. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | public function boot() |
||
16 | { |
||
17 | $this->registerPublishing(); |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Register any package services. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function register() |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Register the package's publishable resources. |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | protected function registerPublishing() |
||
49 | } |
||
50 | } |
||
52 |