Conditions | 2 |
Paths | 2 |
Total Lines | 17 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
7 | protected function displayMsgInCli( |
||
8 | string $msg, |
||
9 | string $txtColor='white', |
||
10 | string $txtStyle='normal' |
||
11 | ) { |
||
12 | $nbArgs = func_num_args(); |
||
13 | if ($nbArgs === 1) { |
||
14 | echo $msg; |
||
15 | ob_flush(); |
||
16 | return; |
||
17 | } |
||
18 | |||
19 | $txtStyleCode = $this->obtainShellTxtStyleCode($txtStyle); |
||
20 | $txtColorCode = $this->obtainShellTxtColorCode($txtColor); |
||
21 | |||
22 | echo "\033[".$txtStyleCode.";".$txtColorCode."m".$msg."\033[0m"; |
||
23 | ob_flush(); |
||
24 | } |
||
62 |