dev-think-one /
laravel-reviewsio-api
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Reviewsio\Endpoints; |
||
| 4 | |||
| 5 | class SimpleRequest extends AbstractEndpointRequest |
||
| 6 | { |
||
| 7 | 1 | public function call(array $options = [], array $pendingRequestOptions = []): AbstractEndpointResponse |
|
| 8 | { |
||
| 9 | 1 | return new SimpleResponse($this->client->pendingRequest($pendingRequestOptions)->send(...$options)); |
|
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 10 | } |
||
| 11 | } |
||
| 12 |