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