REBELinBLUE\Deployer\Scripts\Runner::__call PHP Метод

__call() публичный Метод

Overloading call to undefined methods to pass them to the process object.
public __call ( string $method, array $arguments = [] ) : mixed
$method string
$arguments array
Результат mixed
    public function __call($method, array $arguments = [])
    {
        if (!is_callable([$this->process, $method])) {
            throw new \RuntimeException('Method ' . $method . ' not exists');
        }
        return call_user_func_array([$this->process, $method], $arguments);
    }