PHPDaemon\SockJS\WebSocketRouteProxy::__call PHP Method

__call() public method

__call
public __call ( string $method, array $args ) : mixed
$method string
$args array
return mixed
    public function __call($method, $args)
    {
        $func = [$this->realRoute, $method];
        $func(...$args);
    }