1 | <?php |
||
5 | class ConsoleOutput |
||
6 | { |
||
7 | /** @var \Illuminate\Console\OutputStyle */ |
||
8 | protected $output; |
||
9 | |||
10 | /** |
||
11 | * @param $output |
||
12 | */ |
||
13 | public function setOutput($output) |
||
17 | |||
18 | /** |
||
19 | * @param string $method |
||
20 | * @param array $arguments |
||
21 | */ |
||
22 | public function __call($method, array $arguments) |
||
32 | } |
||
33 |