| 1 | <?php |
||
| 7 | class ServiceProvider extends IlluminateServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Indicates if loading of the provider is deferred. |
||
| 11 | * |
||
| 12 | * @var bool |
||
| 13 | */ |
||
| 14 | protected $defer = true; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Configure package paths. |
||
| 18 | */ |
||
| 19 | 12 | private function configurePaths() |
|
| 25 | |||
| 26 | /** |
||
| 27 | * Merge configuration. |
||
| 28 | */ |
||
| 29 | 12 | private function mergeConfig() |
|
| 35 | |||
| 36 | /** |
||
| 37 | * Configure translation translations. |
||
| 38 | */ |
||
| 39 | private function configureTranslations() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Merge translations. |
||
| 46 | */ |
||
| 47 | private function mergeTranslations() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Get the services provided by the provider. |
||
| 56 | * |
||
| 57 | * @return array |
||
| 58 | */ |
||
| 59 | 1 | public function provides() |
|
| 63 | |||
| 64 | /** |
||
| 65 | * Perform post-registration booting of services. |
||
| 66 | * |
||
| 67 | * @return void |
||
| 68 | */ |
||
| 69 | 12 | public function boot() |
|
| 73 | |||
| 74 | /** |
||
| 75 | * Register the service provider. |
||
| 76 | * |
||
| 77 | * @return void |
||
| 78 | */ |
||
| 79 | 12 | public function register() |
|
| 89 | |||
| 90 | |||
| 91 | } |
||
| 92 |