| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 12 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 26 | protected function displayMsgNLInCli( | ||
| 27 | string $msg, | ||
| 28 | string $txtColor='white', | ||
| 29 | string $txtStyle='normal' | ||
| 30 |     ) { | ||
| 31 | $nbArgs = func_num_args(); | ||
| 32 |         if ($nbArgs === 1) { | ||
| 33 | $this->displayMsgInCli($msg."\n"); | ||
| 34 | return; | ||
| 35 | } | ||
| 36 | |||
| 37 | $this->displayMsgInCli($msg."\n", $txtColor, $txtStyle); | ||
| 38 | } | ||
| 62 |