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