| 1 | <?php |
||
| 10 | class ServiceProvider extends BaseServiceProvider |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Create a new service provider instance. |
||
| 14 | * |
||
| 15 | * @param Application $app |
||
| 16 | */ |
||
| 17 | public function __construct(Application $app) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Bootstrap the application services. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function boot() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Register the application services. |
||
| 34 | * |
||
| 35 | * @return void |
||
| 36 | */ |
||
| 37 | public function register() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return void |
||
| 44 | */ |
||
| 45 | protected function publishConfigs() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return void |
||
| 54 | */ |
||
| 55 | protected function registerBindings() |
||
| 60 | } |
||
| 61 |