Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | 14 | public function format(DataResponse $dataResponse): ResponseInterface |
|
27 | { |
||
28 | 14 | $response = $dataResponse->withData( |
|
29 | 14 | $this->apiResponseDataFactory |
|
30 | 14 | ->createFromResponse($dataResponse) |
|
31 | 14 | ->toArray() |
|
32 | ); |
||
33 | |||
34 | 14 | return $this->jsonDataResponseFormatter->format($response); |
|
35 | } |
||
37 |