Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | protected function launch(DtoInterface $generalRequest, array $serviceRequest, $method) |
||
31 | { |
||
32 | $requester = $this->instantiateRequester($method); |
||
33 | $requester->setData($serviceRequest); |
||
34 | $responder = $this->instantiateResponder($method); |
||
35 | $params = $this->build($requester, $generalRequest); |
||
|
|||
36 | $response = $this->client->request('GET', "router/rest?{$params}", $generalRequest->getHeaders(), []); |
||
37 | return $responder->process($response); |
||
38 | } |
||
61 |