PHPDaemon\SockJS\WebSocketConnectionProxy::__get PHP Method

__get() public method

__get
public __get ( string $k ) : mixed
$k string
return mixed
    public function &__get($k)
    {
        if (!isset($this->realConn->{$k})) {
            return null;
        }
        return $this->realConn->{$k};
    }