1 | <?php namespace NukaCode\Menu; |
||
11 | class MenuServiceProvider extends LaravelServiceProvider { |
||
12 | |||
13 | const NAME = 'menu'; |
||
14 | const VERSION = '1.0.4'; |
||
15 | const DOCS = 'menu'; |
||
16 | |||
17 | /** |
||
18 | * Indicates if loading of the provider is deferred. |
||
19 | * |
||
20 | * @var bool |
||
21 | */ |
||
22 | protected $defer = false; |
||
23 | |||
24 | /** |
||
25 | * Register the service provider. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | public function register() |
||
34 | |||
35 | /** |
||
36 | * Share the package with application |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | protected function shareWithApp() |
||
46 | |||
47 | /** |
||
48 | * Register aliases |
||
49 | * |
||
50 | * @return void |
||
51 | */ |
||
52 | protected function registerAliases() |
||
64 | |||
65 | /** |
||
66 | * Get the services provided by the provider. |
||
67 | * |
||
68 | * @return string[] |
||
69 | */ |
||
70 | public function provides() |
||
74 | |||
75 | } |
||
76 |