Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | public static function displayMsgNL( |
||
31 | string $msg, |
||
32 | string $txtColor = 'white', |
||
33 | string $txtStyle = 'normal' |
||
34 | ) { |
||
35 | 1 | $nbArgs = func_num_args(); |
|
36 | 1 | if ($nbArgs === 1) { |
|
37 | 1 | static::displayMsg($msg); |
|
38 | 1 | echo "\n"; |
|
39 | 1 | static::flush(); |
|
40 | 1 | return; |
|
41 | } |
||
42 | |||
43 | 1 | static::displayMsg($msg, $txtColor, $txtStyle); |
|
44 | 1 | echo "\n"; |
|
45 | 1 | static::flush(); |
|
46 | 1 | } |
|
77 |