1 | <?php |
||
11 | class HealthServiceProvider implements ServiceProviderInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * Registers services on the given app. |
||
16 | * |
||
17 | * This method should only be used to configure services and parameters. |
||
18 | * It should not get services. |
||
19 | * @param Application $app |
||
20 | */ |
||
21 | 6 | public function register(Application $app) |
|
45 | |||
46 | /** |
||
47 | * Bootstraps the application. |
||
48 | * |
||
49 | * This method is called after all services are registered |
||
50 | * and should be used for "dynamic" configuration (whenever |
||
51 | * a service must be requested). |
||
52 | * @param Application $app |
||
53 | */ |
||
54 | 3 | public function boot(Application $app) |
|
58 | } |
||
59 |