1 | <?php |
||
14 | class RemoteOutput implements OutputInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var OutputInterface |
||
18 | */ |
||
19 | private $output; |
||
20 | |||
21 | /** |
||
22 | * @var Client |
||
23 | */ |
||
24 | private $pure; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | private $server; |
||
30 | |||
31 | /** |
||
32 | * @param OutputInterface $output |
||
33 | * @param Client $pure |
||
34 | * @param string $server |
||
35 | */ |
||
36 | public function __construct(OutputInterface $output, Client $pure, $server) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function write($messages, $newline = false, $type = self::OUTPUT_NORMAL) |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function writeln($messages, $type = self::OUTPUT_NORMAL) |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function setVerbosity($level) |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function getVerbosity() |
||
74 | |||
75 | /** |
||
76 | * {@inheritdoc} |
||
77 | */ |
||
78 | public function setDecorated($decorated) |
||
82 | |||
83 | /** |
||
84 | * {@inheritdoc} |
||
85 | */ |
||
86 | public function isDecorated() |
||
90 | |||
91 | /** |
||
92 | * {@inheritdoc} |
||
93 | */ |
||
94 | public function setFormatter(OutputFormatterInterface $formatter) |
||
98 | |||
99 | /** |
||
100 | * {@inheritdoc} |
||
101 | */ |
||
102 | public function getFormatter() |
||
106 | |||
107 | /** |
||
108 | * {@inheritdoc} |
||
109 | */ |
||
110 | public function isQuiet() |
||
114 | |||
115 | /** |
||
116 | * {@inheritdoc} |
||
117 | */ |
||
118 | public function isVerbose() |
||
122 | |||
123 | /** |
||
124 | * {@inheritdoc} |
||
125 | */ |
||
126 | public function isVeryVerbose() |
||
130 | |||
131 | /** |
||
132 | * {@inheritdoc} |
||
133 | */ |
||
134 | public function isDebug() |
||
138 | } |
||
139 |