| 1 | <?php namespace Xethron\MigrationsGenerator; |
||
| 5 | class MigrationsGeneratorServiceProvider extends ServiceProvider { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * Indicates if loading of the provider is deferred. |
||
| 9 | * |
||
| 10 | * @var bool |
||
| 11 | */ |
||
| 12 | protected $defer = false; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Register the service provider. |
||
| 16 | * |
||
| 17 | * @return void |
||
| 18 | */ |
||
| 19 | public function register() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Bootstrap the application events. |
||
| 42 | * |
||
| 43 | * @return void |
||
| 44 | */ |
||
| 45 | public function boot() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Get the services provided by the provider. |
||
| 51 | * |
||
| 52 | * @return array |
||
| 53 | */ |
||
| 54 | public function provides() |
||
| 58 | |||
| 59 | } |
||
| 60 |