| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 66 | private function drawLine($line, $newLine = true) |
||
| 67 | { |
||
| 68 | $formatted = '<fg=yellow>' . $line . '</>'; |
||
| 69 | |||
| 70 | if ($newLine) { |
||
| 71 | $this->output->writeln($formatted); |
||
| 72 | } else { |
||
| 73 | // Draw additional space as we are not going to new line |
||
| 74 | $this->output->write($formatted . ' '); |
||
| 75 | } |
||
| 76 | } |
||
| 77 | } |
||
| 78 |