1 | <?php |
||
13 | class Response |
||
14 | { |
||
15 | /** |
||
16 | * @var int |
||
17 | */ |
||
18 | protected $status_code = -1; |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $body = ''; |
||
23 | /** |
||
24 | * @var \GuzzleHttp\Psr7\Response $psr7response |
||
25 | */ |
||
26 | protected $psr7response; |
||
27 | |||
28 | /** |
||
29 | * @param $property |
||
30 | * @return mixed |
||
31 | */ |
||
32 | 9 | public function __get($property) { |
|
37 | |||
38 | /** |
||
39 | * @param $property |
||
40 | * @param $value |
||
41 | */ |
||
42 | 9 | public function __set($property, $value) { |
|
47 | |||
48 | |||
49 | } |
||
50 |