| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.0185 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 1 | public function __invoke(RequestInterface $request, ResponseInterface $response, array &$options = []): ?string |
|
| 37 | { |
||
| 38 | 1 | $scriptData = ScraperUtil::extractScriptData($response->getBody()->getContents()); |
|
| 39 | 1 | $scriptDataAppsUrl = ScraperUtil::getValue($scriptData, 'ds:3.0.1.0.21.1.2.4.2'); |
|
| 40 | |||
| 41 | 1 | if (\is_string($scriptDataAppsUrl)) { |
|
| 42 | 1 | return GPlayApps::GOOGLE_PLAY_URL . $scriptDataAppsUrl; |
|
| 43 | } |
||
| 44 | |||
| 45 | return null; |
||
| 46 | } |
||
| 48 |