Completed
Pull Request — master (#1989)
by k-yamamura
33:19
created
src/Eccube/InstallApplication.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,17 +34,17 @@
 block discarded – undo
34 34
 
35 35
         parent::__construct($values);
36 36
 
37
-        $base = __DIR__ . '/../..';
37
+        $base = __DIR__.'/../..';
38 38
         $installLog = '/app/log/install.log';
39 39
 
40 40
         // log file for install has to be writable
41
-        if (!is_writable($base . $installLog)) {
42
-            echo '以下のファイルのアクセス制限を変更してください。<br>' . PHP_EOL;
43
-            echo '× : '.$installLog.'<br><br>' . PHP_EOL;
41
+        if (!is_writable($base.$installLog)) {
42
+            echo '以下のファイルのアクセス制限を変更してください。<br>'.PHP_EOL;
43
+            echo '× : '.$installLog.'<br><br>'.PHP_EOL;
44 44
         }
45 45
 
46 46
         $app->register(new \Silex\Provider\MonologServiceProvider(), array(
47
-            'monolog.logfile' => __DIR__.'/../..' . $installLog,
47
+            'monolog.logfile' => __DIR__.'/../..'.$installLog,
48 48
         ));
49 49
 
50 50
         // load config
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/Store/PluginController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,6 @@
 block discarded – undo
29 29
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
30 30
 use Symfony\Component\Finder\Finder;
31 31
 use Symfony\Component\Yaml\Yaml;
32
-use Monolog\Logger;
33 32
 
34 33
 class FormEventSubscriber implements EventSubscriberInterface
35 34
 {
Please login to merge, or discard this patch.