PHPDaemon\SockJS\WebSocketConnectionProxy::__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->realConn, $method];
        return $func(...$args);
    }