@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | |
98 | 98 | // Proxyのクラスをロードせずにスキーマを更新するために、 |
99 | 99 | // インストール時には一時的なディレクトリにProxyを生成する |
100 | - $tmpProxyOutputDir = sys_get_temp_dir() . '/proxy_' . Str::random(12); |
|
100 | + $tmpProxyOutputDir = sys_get_temp_dir().'/proxy_'.Str::random(12); |
|
101 | 101 | @mkdir($tmpProxyOutputDir); |
102 | 102 | |
103 | 103 | try { |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | if (!empty($config_cache)) { |
190 | 190 | $meta = $config_cache; |
191 | 191 | } else { |
192 | - $meta = $this->readYml($dir . '/config.yml'); |
|
192 | + $meta = $this->readYml($dir.'/config.yml'); |
|
193 | 193 | } |
194 | 194 | } catch (\Symfony\Component\Yaml\Exception\ParseException $e) { |
195 | 195 | throw new PluginException($e->getMessage(), $e->getCode(), $e); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | { |
13 | 13 | public function register(Container $app) |
14 | 14 | { |
15 | - $app['eccube.di'] = function (Container $app) { |
|
15 | + $app['eccube.di'] = function(Container $app) { |
|
16 | 16 | $di = new DependencyBuilder( |
17 | 17 | $app['eccube.di.generator.dir'], |
18 | 18 | $app['eccube.di.generator.class'], |