| 1 | <?php |
||
| 18 | class ResponderServiceProvider extends BaseServiceProvider |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Keeps a short reference to the package configurations. |
||
| 22 | * |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | protected $config; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Indicates if loading of the provider is deferred. |
||
| 29 | * |
||
| 30 | * @var bool |
||
| 31 | */ |
||
| 32 | protected $defer = false; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Bootstrap the application events. |
||
| 36 | * |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | public function boot() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Register the service provider. |
||
| 56 | * |
||
| 57 | * @return void |
||
| 58 | */ |
||
| 59 | public function register() |
||
| 72 | } |