Completed
Push — master ( b3c0e0...bf06df )
by Mewes
02:19
created
Tests/Kernel/AppKernel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
         $fs = new Filesystem();
29 29
         if (!$fs->isAbsolutePath($config)) {
30
-            $config = __DIR__ . '/config/' .$config;
30
+            $config = __DIR__.'/config/'.$config;
31 31
         }
32 32
 
33 33
         if (!file_exists($config)) {
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function getCacheDir()
67 67
     {
68
-        return __DIR__ . '/../../tmp/functional';
68
+        return __DIR__.'/../../tmp/functional';
69 69
     }
70 70
 
71 71
     /**
@@ -73,6 +73,6 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function getLogDir()
75 75
     {
76
-        return __DIR__ . '/../../tmp/functional/logs';
76
+        return __DIR__.'/../../tmp/functional/logs';
77 77
     }
78 78
 }
Please login to merge, or discard this patch.