@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | */ |
| 25 | 25 | public function testExistingConfigurationFile() |
| 26 | 26 | { |
| 27 | - $file = sys_get_temp_dir().DIRECTORY_SEPARATOR.Monitor::CONFIG_FILENAME; |
|
| 27 | + $file = sys_get_temp_dir() . DIRECTORY_SEPARATOR . Monitor::CONFIG_FILENAME; |
|
| 28 | 28 | |
| 29 | 29 | // Dump the configuration set by the enduser |
| 30 | 30 | $configuration = [ |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | |
| 42 | 42 | $content = ''; |
| 43 | 43 | foreach ($configuration as $name => $section) { |
| 44 | - $content .= Yaml::dump([$name => $section], 4).PHP_EOL; |
|
| 44 | + $content .= Yaml::dump([$name => $section], 4) . PHP_EOL; |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | file_put_contents($file, $content); |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | */ |
| 109 | 109 | public function testDefaultConfigurationFile() |
| 110 | 110 | { |
| 111 | - $testFile = sys_get_temp_dir().DIRECTORY_SEPARATOR.Monitor::CONFIG_FILENAME; |
|
| 111 | + $testFile = sys_get_temp_dir() . DIRECTORY_SEPARATOR . Monitor::CONFIG_FILENAME; |
|
| 112 | 112 | |
| 113 | 113 | $configurationLoader = new ConfigurationLoader(); |
| 114 | 114 | $configurationDumper = new ConfigurationDumper(); |