Total Complexity | 7 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Coverage | 92.86% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class FindSimilarAppsUrlScraper implements ParseHandlerInterface |
||
27 | { |
||
28 | /** @var AppId */ |
||
29 | private $appId; |
||
30 | |||
31 | /** |
||
32 | * SimilarScraper constructor. |
||
33 | * |
||
34 | * @param AppId $appId |
||
35 | */ |
||
36 | 2 | public function __construct(AppId $appId) |
|
39 | } |
||
40 | |||
41 | /** |
||
42 | * @param RequestInterface $request |
||
43 | * @param ResponseInterface $response |
||
44 | * @param array $options |
||
45 | * |
||
46 | * @return string|null |
||
47 | */ |
||
48 | 2 | public function __invoke(RequestInterface $request, ResponseInterface $response, array &$options = []): ?string |
|
71 |