Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
34 | 80 | public function send(): Collection |
|
35 | { |
||
36 | 80 | $this->validateParams(); |
|
37 | |||
38 | 54 | $request = new Request($this->method, $this->getFullEndpoint(), [], json_encode($this->payload)); |
|
39 | |||
40 | 54 | $response = $this->api->send($request); |
|
41 | |||
42 | 54 | return collect(json_decode($response->getBody()->getContents())); |
|
43 | } |
||
44 | |||
70 |