1 | <?php |
||
19 | abstract class AbstractConsoleWriter implements StdoutWriter |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * @var \Zend\Console\Adapter\AdapterInterface |
||
24 | */ |
||
25 | protected $console; |
||
26 | |||
27 | |||
28 | /** |
||
29 | * @{inheritDoc} |
||
30 | */ |
||
31 | public function writeText($text, $color = null, $bgColor = null) |
||
35 | |||
36 | /** |
||
37 | * @{inheritDoc} |
||
38 | */ |
||
39 | public function writeLine($text = "", $color = null, $bgColor = null) |
||
43 | |||
44 | /** |
||
45 | * @{inheritDoc} |
||
46 | */ |
||
47 | public function writeEOL() |
||
51 | |||
52 | } |
||
53 |