Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
50 | 1 | public function execute(RequestInterface $request, RequestOptions $requestOptions) |
|
51 | { |
||
52 | 1 | $path = $requestOptions->getEndpoint() . "/" . $requestOptions->getVersion() . "/public/" . $request->getMethod(); |
|
53 | |||
54 | 1 | return $this->client->request(RequestMethodEnum::REQUEST_METHOD_GET, $path, [ |
|
55 | 1 | 'query' => $request->getRequestData() |
|
56 | 1 | ]); |
|
59 |