File "Request.php"

Full Path: /www/wwwroot/shphe-en.com/admin/extend/vendor/qiniu/php-sdk/src/Qiniu/Http/Request.php
File size: 365 bytes
MIME-type: --
Charset: utf-8

<?php
namespace Qiniu\Http;

final class Request
{
    public $url;
    public $headers;
    public $body;
    public $method;

    public function __construct($method, $url, array $headers = array(), $body = null)
    {
        $this->method = strtoupper($method);
        $this->url = $url;
        $this->headers = $headers;
        $this->body = $body;
    }
}