| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public static function echo(string $str, ?string $foreground_color = null): void { |
||
| 23 | |||
| 24 | $lines = preg_split("/\r\n|\n|\r/", $str); |
||
| 25 | |||
| 26 | foreach($lines as $line) { |
||
| 27 | if($foreground_color === null) { |
||
| 28 | echo self::PADDING . $line . self::EOL; |
||
| 29 | } else { |
||
| 30 | echo self::PADDING . Color::getColoredString($line, $foreground_color). self::EOL; |
||
| 31 | } |
||
| 36 | } |