1 | <?php namespace KitLoong\MigrationsGenerator; |
||
7 | class MigrationsGeneratorServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Indicates if loading of the provider is deferred. |
||
11 | * |
||
12 | * @var bool |
||
13 | */ |
||
14 | protected $defer = false; |
||
15 | |||
16 | /** |
||
17 | * Register the service provider. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function register() |
||
45 | |||
46 | /** |
||
47 | * Bootstrap the application events. |
||
48 | * |
||
49 | * @return void |
||
50 | */ |
||
51 | public function boot() |
||
55 | |||
56 | /** |
||
57 | * Get the services provided by the provider. |
||
58 | * |
||
59 | * @return array |
||
60 | */ |
||
61 | public function provides() |
||
65 | |||
66 | /** |
||
67 | * Register the config paths |
||
68 | */ |
||
69 | protected function registerConfig() |
||
74 | } |
||
75 |