| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 2 | private function getNextUrl(Response $response) : ?string |
|
| 34 | { |
||
| 35 | 2 | $links = $response->getHeader('Link'); |
|
| 36 | |||
| 37 | 2 | foreach ($links as $link) { |
|
| 38 | 1 | $matches = []; |
|
| 39 | |||
| 40 | 1 | if (preg_match('#<(?P<url>.*)>; rel="next"#', $link, $matches)) { |
|
| 41 | 1 | return $matches['url']; |
|
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 45 | 1 | return null; |
|
| 46 | } |
||
| 48 |