1 | <?php |
||
13 | class ControllerServiceProvider implements ServiceProviderInterface |
||
14 | { |
||
15 | /** |
||
16 | * Registers services on the given app. |
||
17 | * |
||
18 | * This method should only be used to configure services and parameters. |
||
19 | * It should not get services. |
||
20 | * |
||
21 | * @param Application $app An Application instance |
||
22 | */ |
||
23 | 35 | public function register(Application $app) |
|
38 | |||
39 | /** |
||
40 | * Bootstraps the application. |
||
41 | * |
||
42 | * This method is called after all services are registered |
||
43 | * and should be used for "dynamic" configuration (whenever |
||
44 | * a service must be requested). |
||
45 | */ |
||
46 | 35 | public function boot(Application $app) |
|
50 | |||
51 | } |