Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function __construct($endpoint, $method, \WebServCo\Framework\Http\Response $response) |
||
13 | { |
||
14 | $this->endpoint = $endpoint; |
||
15 | $this->method = $method; |
||
16 | $this->response = $response; |
||
17 | $this->status = $this->response->getStatus(); |
||
18 | $this->data = $this->processResponseData(); |
||
19 | } |
||
73 |