1 | <?php |
||
13 | class MenuServiceProvider extends LaravelServiceProvider |
||
14 | { |
||
15 | /** |
||
16 | * Indicates if loading of the provider is deferred. |
||
17 | * |
||
18 | * @var bool |
||
19 | */ |
||
20 | protected $defer = false; |
||
21 | |||
22 | /** |
||
23 | * Register the service provider. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | public function register() |
||
32 | |||
33 | /** |
||
34 | * Share the package with application |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | protected function shareWithApp() |
||
44 | |||
45 | /** |
||
46 | * Register aliases |
||
47 | * |
||
48 | * @return void |
||
49 | */ |
||
50 | protected function registerAliases() |
||
55 | |||
56 | /** |
||
57 | * Get the services provided by the provider. |
||
58 | * |
||
59 | * @return string[] |
||
60 | */ |
||
61 | public function provides() |
||
65 | |||
66 | } |
||
67 |