Completed
Push — master ( 483143...6b44c3 )
by Guillaume
05:17
created
tests/Handler/InitHandlerTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.