# wpvr/9.1.3/vendor/posthog/posthog-php/lib/HttpResponse.php

WPVR – 360 Panorama viewer and Virtual Tour Builder for WordPress, version 9.1.3. 32 lines.

- Page: https://pluginprobe.com/plugins/wpvr/9.1.3/code/vendor/posthog/posthog-php/lib/HttpResponse.php
- Raw: https://pluginprobe.com/plugins/wpvr/9.1.3/raw/vendor/posthog/posthog-php/lib/HttpResponse.php
- Modified: 2026-04-02T11:52:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpvr/9.1.3/code/vendor/posthog/posthog-php/lib/HttpResponse.php#L10-L20`.

```php
<?php

namespace PostHog;

class HttpResponse
{
    private $response;
    private $responseCode;

    public function __construct($response, $responseCode)
    {
        $this->response = $response;
        $this->responseCode = $responseCode;
    }

    /**
     * @return mixed
     */
    public function getResponse()
    {
        return $this->response;
    }

    /**
     * @return mixed
     */
    public function getResponseCode()
    {
        return $this->responseCode;
    }
}

```
