| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2.0438 |
| Changes | 5 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 22 | 3 | public function create(Response $response, $affectedUrl = '') { |
|
| 23 | 3 | $html = $response->getBody(); |
|
| 24 | 3 | $html = Helper::safeEncodeStr((string) $html); |
|
| 25 | 3 | $html = EncodingConverter::convertTo($response, $html, 'UTF-8'); |
|
| 26 | 3 | $page = new ElementFinder((string) $html); |
|
| 27 | |||
| 28 | 3 | if ($affectedUrl) { |
|
| 29 | LinkConverter::convertUrlsToAbsolute($page, $affectedUrl); |
||
| 30 | } |
||
| 31 | |||
| 32 | 3 | return $page; |
|
| 33 | } |
||
| 34 | |||
| 35 | } |