Failed Conditions
Push — experimental/3.1 ( c6bbe9...5ca513 )
by Yangsin
235:43 queued 228:52
created
src/Eccube/Service/PluginService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Eccube/DI/DIServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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'],
Please login to merge, or discard this patch.