| 1 | <?php namespace NukaCode\Users\Providers; |
||
| 6 | class UsersServiceProvider extends ServiceProvider |
||
| 7 | {
|
||
| 8 | |||
| 9 | /** |
||
| 10 | * Indicates if loading of the provider is deferred. |
||
| 11 | * |
||
| 12 | * @var bool |
||
| 13 | */ |
||
| 14 | protected $defer = false; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Register bindings in the container. |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function register() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Register the service provider. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function boot() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Load the configs. |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | protected function loadConfigs() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Load the migrations. |
||
| 52 | * |
||
| 53 | * @return void |
||
| 54 | */ |
||
| 55 | protected function loadMigrations() |
||
| 63 | |||
| 64 | /** |
||
| 65 | * Register views |
||
| 66 | * |
||
| 67 | * @return void |
||
| 68 | */ |
||
| 69 | protected function loadViews() |
||
| 75 | } |
||
| 76 |