Total Complexity | 4 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
26 | class StringOutput extends Output |
||
27 | { |
||
28 | public $output = ''; |
||
29 | |||
30 | public function clear() |
||
31 | { |
||
32 | $this->output = ''; |
||
33 | } |
||
34 | |||
35 | protected function doWrite($message, $newline) |
||
36 | { |
||
37 | $this->output .= $message.($newline ? "\n" : ''); |
||
38 | } |
||
39 | |||
40 | public function getContent() |
||
43 | } |
||
44 | } |
||
45 |