CapMousse\ReactRestify\Server::__call PHP 메소드

__call() 공개 메소드

public __call ( string $name, array $arguments )
$name string method to call
$arguments array
    public function __call($name, $arguments)
    {
        return $this->router->addRoute($name, $arguments[0], $arguments[1]);
    }