Goose\Client::__call PHP 메소드

__call() 공개 메소드

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