1 | <?php |
||
9 | class GridServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Indicates if loading of the provider is deferred. |
||
13 | * |
||
14 | * @var bool |
||
15 | */ |
||
16 | protected $defer = true; |
||
17 | |||
18 | /** |
||
19 | * Bootstrap the application services. |
||
20 | * |
||
21 | * @return void |
||
22 | */ |
||
23 | public function boot() |
||
27 | |||
28 | /** |
||
29 | * Register the application services. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function register() |
||
41 | |||
42 | /** |
||
43 | * Get the services provided by the provider. |
||
44 | * |
||
45 | * @return array |
||
46 | */ |
||
47 | public function provides() |
||
51 | } |
||
52 |