1 | <?php |
||
23 | class Output extends Symfony_output { |
||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $buffer = ''; |
||
28 | /** |
||
29 | * @var resource |
||
30 | */ |
||
31 | protected $stream; |
||
32 | function __construct ($verbosity = self::VERBOSITY_NORMAL, $decorated = false, OutputFormatterInterface $formatter = null) { |
||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | function get_buffer () { |
||
42 | /** |
||
43 | * @param string $message |
||
44 | * @param bool $newline |
||
45 | */ |
||
46 | protected function doWrite ($message, $newline) { |
||
63 | } |
||
64 |