| 1 | <?php |
||
| 11 | class ConfigServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Bootstrap any application services. |
||
| 15 | * |
||
| 16 | * @param \Illuminate\Contracts\Http\Kernel $kernel |
||
| 17 | */ |
||
| 18 | 1 | public function boot(Kernel $kernel) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * Register any application services. |
||
| 29 | */ |
||
| 30 | public function register() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the services provided by the provider. |
||
| 47 | * |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | 1 | public function provides() |
|
| 54 | |||
| 55 | /** |
||
| 56 | * handle publishes. |
||
| 57 | */ |
||
| 58 | 1 | protected function handlePublishes() |
|
| 64 | } |
||
| 65 |