1 | <?php |
||
16 | class UseCaseServiceProvide implements ServiceProviderInterface{ |
||
17 | /** |
||
18 | * Registers services on the given app. |
||
19 | * |
||
20 | * This method should only be used to configure services and parameters. |
||
21 | * It should not get services. |
||
22 | */ |
||
23 | 35 | public function register(Application $app) |
|
41 | |||
42 | /** |
||
43 | * Bootstraps the application. |
||
44 | * |
||
45 | * This method is called after all services are registered |
||
46 | * and should be used for "dynamic" configuration (whenever |
||
47 | * a service must be requested). |
||
48 | */ |
||
49 | 35 | public function boot(Application $app) |
|
52 | |||
53 | } |