Total Complexity | 10 |
Total Lines | 55 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | trait BasicCliMsg |
||
6 | { |
||
7 | protected function displayMsgInCli( |
||
24 | } |
||
25 | |||
26 | protected function displayMsgNLInCli( |
||
38 | } |
||
39 | |||
40 | protected function obtainShellTxtColorCode(string $txtColor): int |
||
41 | { |
||
42 | if ($txtColor === 'red') { |
||
43 | return 31; |
||
44 | } elseif ($txtColor === 'green') { |
||
45 | return 32; |
||
46 | } elseif ($txtColor === 'yellow') { |
||
47 | return 33; |
||
48 | } |
||
49 | |||
50 | return 37; //white |
||
51 | } |
||
52 | |||
53 | protected function obtainShellTxtStyleCode(string $txtStyle): int |
||
60 | } |
||
61 | } |
||
62 |