Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | public static function format(JonnyWResponseInterface $phantomJsResponse): ResponseInterface |
||
22 | { |
||
23 | $content = $phantomJsResponse->getContent(); |
||
24 | $status = $phantomJsResponse->getStatus(); |
||
25 | $headers = $phantomJsResponse->getHeaders(); |
||
26 | |||
27 | return new BrowserKitResponse($content, $status, $headers); |
||
28 | } |
||
29 | } |
||
30 |