| Total Complexity | 3 | 
| Total Lines | 22 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php | ||
| 10 | class TestOutput extends Output | ||
| 11 | { | ||
| 12 | /** | ||
| 13 | * @var string | ||
| 14 | */ | ||
| 15 | public $output = ''; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * @return void | ||
| 19 | */ | ||
| 20 | public function clear() | ||
| 21 |     { | ||
| 22 | $this->output = ''; | ||
| 23 | } | ||
| 24 | |||
| 25 | /** | ||
| 26 | * @param string $message | ||
| 27 | * @param bool $newline | ||
| 28 | */ | ||
| 29 | protected function doWrite($message, $newline) | ||
| 32 | } | ||
| 33 | } | ||
| 34 |