1 | <?php namespace Lanin\Laravel\SetupWizard; |
||
6 | class SetupWizardServiceProvider extends ServiceProvider |
||
7 | { |
||
8 | |||
9 | /** |
||
10 | * Bootstrap application service. |
||
11 | */ |
||
12 | 136 | public function boot() |
|
18 | |||
19 | /** |
||
20 | * Register the service provider. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | 136 | public function register() |
|
29 | |||
30 | /** |
||
31 | * Register setup command. |
||
32 | */ |
||
33 | 136 | protected function registerCommand() |
|
39 | |||
40 | /** |
||
41 | * Register setup config. |
||
42 | */ |
||
43 | 136 | protected function registerConfig() |
|
50 | |||
51 | /** |
||
52 | * Get the services provided by the provider. |
||
53 | * |
||
54 | * @return array |
||
55 | */ |
||
56 | 2 | public function provides() |
|
62 | } |