| 1 | <?php |
||
| 7 | class ConsoleOutput |
||
| 8 | { |
||
| 9 | public static Command $runningCommand; |
||
|
|
|||
| 10 | |||
| 11 | public function setOutput(Command $runningCommand) |
||
| 12 | { |
||
| 13 | static::$runningCommand = $runningCommand; |
||
| 14 | } |
||
| 15 | |||
| 16 | public static function __callStatic(string $method, $arguments) |
||
| 17 | { |
||
| 18 | if (! static::$runningCommand) { |
||
| 19 | return; |
||
| 20 | } |
||
| 21 | |||
| 22 | static::$runningCommand->$method(...$arguments); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |