Completed
Pull Request — master (#457)
by personal
01:58
created
src/Hal/Application/Config/File/ConfigFileReaderJson.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         if (isset($jsonData['report']) && is_array($jsonData['report'])) {
88 88
             foreach ($jsonData['report'] as $reportType => $path) {
89 89
                 $path = $this->resolvePath($path);
90
-                $config->set('report-' . $reportType, $path);
90
+                $config->set('report-'.$reportType, $path);
91 91
             }
92 92
         }
93 93
     }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     private function resolvePath($path)
99 99
     {
100 100
         if (DIRECTORY_SEPARATOR !== $path[0]) {
101
-            $path = dirname($this->filename) . DIRECTORY_SEPARATOR . $path;
101
+            $path = dirname($this->filename).DIRECTORY_SEPARATOR.$path;
102 102
         }
103 103
 
104 104
         return $path;
Please login to merge, or discard this patch.