| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class Output extends \Symfony\Component\Console\Output\Output |
||
| 8 | { |
||
| 9 | private $messages = []; |
||
| 10 | |||
| 11 | public function getMessages() |
||
| 14 | } |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Writes a message to the output. |
||
| 18 | * |
||
| 19 | * @param string $message A message to write to the output |
||
| 20 | * @param bool $newline Whether to add a newline or not |
||
| 21 | */ |
||
| 22 | protected function doWrite($message, $newline) |
||
| 25 | } |
||
| 26 | } |