Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
53 | 4 | public static function echo(string $str, ?string $foreground_color = null) : void { |
|
54 | |||
55 | 4 | $lines = preg_split("/\r\n|\n|\r/", $str); |
|
56 | |||
57 | 4 | $output = []; |
|
58 | 4 | foreach ($lines as $line) { |
|
59 | 4 | if ($foreground_color !== null) { |
|
60 | 4 | $line = Color::getColoredString($line, $foreground_color); |
|
61 | } |
||
62 | 4 | $output[] = $line; |
|
63 | } |
||
64 | |||
65 | 4 | echo implode(self::EOL, $output); |
|
66 | } |
||
67 | } |