Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Blank.php « Response « Request « Common « OpenCloud « lib « php-opencloud « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c79adcef3a06ab647a30703f78250399cc864b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php

namespace OpenCloud\Common\Request\Response;

class Blank extends Http 
{
    public $errno;
    public $error;
    public $info;
    public $body;
    public $headers = array();
    public $status = 200;
    public $rawdata;

    public function __construct(array $values = array()) 
    {
        foreach($values as $name => $value) {
            $this->$name = $value;
        }
    }

    public function httpStatus() 
    { 
        return $this->status; 
    }
    
}