@@ -26,7 +26,7 @@ discard block |
||
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 |
||
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 |
||
72 | 72 | */ |
73 | 73 | public function getLogDir() |
74 | 74 | { |
75 | - return __DIR__ . '/../../tmp/logs'; |
|
75 | + return __DIR__.'/../../tmp/logs'; |
|
76 | 76 | } |
77 | 77 | } |