| Conditions | 2 |
| Paths | 2 |
| Total Lines | 19 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public static function displayMsg( |
||
| 10 | string $msg, |
||
| 11 | string $txtColor = 'white', |
||
| 12 | string $txtStyle = 'normal' |
||
| 13 | ) { |
||
| 14 | 1 | $nbArgs = func_num_args(); |
|
| 15 | |||
| 16 | 1 | if ($nbArgs === 1) { |
|
| 17 | 1 | echo $msg; |
|
| 18 | 1 | static::flush(); |
|
| 19 | |||
| 20 | 1 | return; |
|
| 21 | } |
||
| 22 | |||
| 23 | 1 | $txtStyleCode = static::obtainTxtStyleCode($txtStyle); |
|
| 24 | 1 | $txtColorCode = static::obtainTxtColorCode($txtColor); |
|
| 25 | |||
| 26 | 1 | echo "\033[".$txtStyleCode.";".$txtColorCode."m".$msg."\033[0m"; |
|
| 27 | 1 | static::flush(); |
|
| 28 | 1 | } |
|
| 77 |