| Conditions | 3 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | protected function overwrite($string, $style = null, $verbosity = null) |
||
| 18 | { |
||
| 19 | if ($this->output->isDecorated()) { |
||
| 20 | // Move the cursor to the beginning of the line |
||
| 21 | $this->output->write("\x0D"); |
||
| 22 | |||
| 23 | // Erase the line |
||
| 24 | $this->output->write("\x1B[2K"); |
||
| 25 | } |
||
| 26 | |||
| 27 | $styled = $style ? "<$style>$string</$style>" : $string; |
||
| 28 | |||
| 29 | $this->output->write($styled, false, $this->parseVerbosity($verbosity)); |
||
| 30 | } |
||
| 41 |