| 1 | <?php |
||
| 22 | class CarbonatedServiceProvider extends ServiceProvider |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Indicates if loading of the provider is deferred. |
||
| 26 | * |
||
| 27 | * @var bool |
||
| 28 | */ |
||
| 29 | protected $defer = true; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Boot the service provider. |
||
| 33 | * |
||
| 34 | * @return void |
||
| 35 | */ |
||
| 36 | public function boot() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Setup the config. |
||
| 43 | * |
||
| 44 | * @return void |
||
| 45 | */ |
||
| 46 | protected function setupConfig() |
||
| 56 | } |
||
| 57 |