1 | <?php |
||
8 | class ServiceProvider extends BaseServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Indicates if loading of the provider is deferred. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $defer = false; |
||
16 | |||
17 | /** |
||
18 | * Bootstrap the application services. |
||
19 | */ |
||
20 | public function boot() |
||
35 | |||
36 | /** |
||
37 | * Register the application services. |
||
38 | */ |
||
39 | public function register() |
||
45 | } |
||
46 |