Passed
Push — master ( 7e3f7f...3ccb1e )
by Caen
13:48 queued 13s
created
monorepo/HydeStan/vendor/php-console/console.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
     public function line(string $message = ''): self
22 22
     {
23
-        return $this->write($message . PHP_EOL);
23
+        return $this->write($message.PHP_EOL);
24 24
     }
25 25
 
26 26
     public function newline(int $count = 1): self
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     }
55 55
     protected function ansi(string $string, string $color): string
56 56
     {
57
-        return "\033[" . $color . 'm' . $string . "\033[0m";
57
+        return "\033[".$color.'m'.$string."\033[0m";
58 58
     }
59 59
 
60 60
     protected function black(string $string): string
Please login to merge, or discard this patch.