@@ -66,7 +66,7 @@ |
||
66 | 66 | return $data; |
67 | 67 | } |
68 | 68 | |
69 | - private function parseImports(Config &$config, $file) |
|
69 | + private function parseImports(Config&$config, $file) |
|
70 | 70 | { |
71 | 71 | if (!isset($config->data['imports'])) { |
72 | 72 | return; |
@@ -28,10 +28,10 @@ |
||
28 | 28 | |
29 | 29 | public function register(Application $app) |
30 | 30 | { |
31 | - $app['config'] = $app->share(function (Application $app) { |
|
31 | + $app['config'] = $app->share(function(Application $app) { |
|
32 | 32 | if ($this->cacheDirPath) { |
33 | 33 | $cache = $this->getConfigCacheFactory($app['debug'])->cache($this->cacheDirPath.'/config.cache.php', |
34 | - function (ConfigCacheInterface $cache) { |
|
34 | + function(ConfigCacheInterface $cache) { |
|
35 | 35 | $config = $this->loadConfig(); |
36 | 36 | |
37 | 37 | $content = sprintf('<?php use Junker\Silex\Config; $c = new Config(%s);', var_export($config->data, true)).PHP_EOL; |