1 | <?php |
||
11 | class RepositoryServiceProvider implements ServiceProviderInterface { |
||
12 | /** |
||
13 | * Registers services on the given app. |
||
14 | * |
||
15 | * This method should only be used to configure services and parameters. |
||
16 | * It should not get services. |
||
17 | */ |
||
18 | 35 | public function register(Application $app) |
|
30 | |||
31 | /** |
||
32 | * Bootstraps the application. |
||
33 | * |
||
34 | * This method is called after all services are registered |
||
35 | * and should be used for "dynamic" configuration (whenever |
||
36 | * a service must be requested). |
||
37 | */ |
||
38 | 35 | public function boot(Application $app) |
|
42 | |||
43 | } |