1 | <?php |
||
11 | class Config implements ServiceProviderInterface |
||
12 | { |
||
13 | /** |
||
14 | * @params string $env |
||
15 | */ |
||
16 | public function __construct() |
||
22 | |||
23 | /** |
||
24 | * @{inherit doc} |
||
25 | */ |
||
26 | public function register(Container $app) |
||
32 | |||
33 | /** |
||
34 | * Set up environmental variables |
||
35 | * |
||
36 | * If development environment, set xdebug to display all the things |
||
37 | * |
||
38 | * @param Container $app Pimple Container |
||
39 | * |
||
40 | */ |
||
41 | private function registerEnvironmentParams(Container $app) |
||
55 | } |
||
56 |