Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
20 | public static function echo(string $str, ?string $foreground_color = null): void { |
||
21 | |||
22 | $lines = preg_split("/\r\n|\n|\r/", $str); |
||
23 | |||
24 | $output = []; |
||
25 | foreach ($lines as $line) { |
||
26 | if ($foreground_color !== null) { |
||
27 | $line = Color::getColoredString($line, $foreground_color); |
||
28 | } |
||
29 | $output[] = $line; |
||
30 | } |
||
31 | |||
32 | echo implode(self::EOL, $output); |
||
33 | } |
||
36 | } |