Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | 13 | public function runRequest(Request $request): ResponseTestCase |
|
23 | { |
||
24 | 13 | $this->app->instance('request', $request); |
|
25 | |||
26 | 13 | $data = $this->client->marshalRequest(new RequestContext(compact('request'))); |
|
27 | |||
28 | 13 | $this->handle($data['context']->request, $data['context']); |
|
29 | |||
30 | 13 | return $this->client->response; |
|
|
|||
31 | } |
||
33 |