1 | <?php |
||
8 | class SruServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Indicates if loading of the provider is deferred. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $defer = true; |
||
16 | |||
17 | /** |
||
18 | * Bootstrap the application events. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function boot() |
||
28 | |||
29 | /** |
||
30 | * Register the service provider. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function register() |
||
44 | |||
45 | /** |
||
46 | * Get the services provided by the provider. |
||
47 | * |
||
48 | * @return array |
||
49 | */ |
||
50 | public function provides() |
||
54 | } |
||
55 |