@@ -87,7 +87,7 @@ discard block |
||
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 |
||
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; |