| 1 | <?php | ||
| 9 | class DbMigrationsServiceProvider extends ServiceProvider | ||
| 10 | { | ||
| 11 | /** | ||
| 12 | * Indicates if loading of the provider is deferred. | ||
| 13 | * | ||
| 14 | * @var bool | ||
| 15 | */ | ||
| 16 | protected $defer = false; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * Bootstrap the application events. | ||
| 20 | */ | ||
| 21 | public function boot() | ||
| 26 | |||
| 27 | //end boot() | ||
| 28 | |||
| 29 | /** | ||
| 30 | * Register the service provider. | ||
| 31 | */ | ||
| 32 | public function register() | ||
| 44 | |||
| 45 | //end register() | ||
| 46 | |||
| 47 | /** | ||
| 48 | * Get the services provided by the provider. | ||
| 49 | * | ||
| 50 | * @return array | ||
| 51 | */ | ||
| 52 | public function provides() | ||
| 56 | |||
| 57 | //end provides() | ||
| 58 | }//end class | ||
| 59 |