File "HttpResponse.php"

Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/backupbuddy/destinations/dropbox2/lib/Dropbox/HttpResponse.php
File size: 246 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Dropbox;

/**
 * @internal
 */
final class HttpResponse
{
    public $statusCode;
    public $body;

    function __construct($statusCode, $body)
    {
        $this->statusCode = $statusCode;
        $this->body = $body;
    }
}