Goose\Client::__call PHP Method

__call() public method

public __call ( string $name, mixed[] $arguments ) : mixed
$name string
$arguments mixed[]
return mixed
    public function __call($name, $arguments)
    {
        if (method_exists($this->config, $name)) {
            return call_user_func_array(array($this->config, $name), $arguments);
        }
        return null;
    }