Completed
Pull Request — master (#456)
by personal
02:02
created
src/Hal/Component/Output/CliOutput.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function writeln($message)
27 27
     {
28
-        $this->write(PHP_EOL . $message);
28
+        $this->write(PHP_EOL.$message);
29 29
         return $this;
30 30
     }
31 31
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function write($message)
37 37
     {
38
-        $this->quietMode||file_put_contents('php://stdout', $message);
38
+        $this->quietMode || file_put_contents('php://stdout', $message);
39 39
         return $this;
40 40
     }
41 41
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             return
76 76
                 0 >= version_compare(
77 77
                     '10.0.10586',
78
-                    PHP_WINDOWS_VERSION_MAJOR . '.' . PHP_WINDOWS_VERSION_MINOR . '.' . PHP_WINDOWS_VERSION_BUILD
78
+                    PHP_WINDOWS_VERSION_MAJOR.'.'.PHP_WINDOWS_VERSION_MINOR.'.'.PHP_WINDOWS_VERSION_BUILD
79 79
                 )
80 80
                 || false !== getenv('ANSICON')
81 81
                 || 'ON' === getenv('ConEmuANSI')
Please login to merge, or discard this patch.