1 | <?php |
||
8 | class ServiceProvider extends Provider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap the application services. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | public function boot(): void |
||
21 | |||
22 | /** |
||
23 | * Register the application services. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | public function register(): void |
||
36 | |||
37 | /** |
||
38 | * Register the package's singleton objects. |
||
39 | * |
||
40 | * @return void |
||
41 | */ |
||
42 | public function registerSingletons(): void |
||
52 | } |
||
53 |