@@ -32,10 +32,10 @@ |
||
| 32 | 32 | |
| 33 | 33 | public function register(Application $app) |
| 34 | 34 | { |
| 35 | - $app['config'] = $app->share(function () { |
|
| 35 | + $app['config'] = $app->share(function() { |
|
| 36 | 36 | if ($this->cacheDirPath) { |
| 37 | 37 | $cache = $this->getConfigCacheFactory($this->debug)->cache($this->cacheDirPath.'/config.cache.php', |
| 38 | - function (ConfigCacheInterface $cache) { |
|
| 38 | + function(ConfigCacheInterface $cache) { |
|
| 39 | 39 | $config = $this->loadConfig(); |
| 40 | 40 | |
| 41 | 41 | $content = sprintf('<?php use Junker\Silex\Config; $c = new Config(%s);', var_export($config->data, true)).PHP_EOL; |
@@ -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; |