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