| 1 | <?php |
||
| 10 | class ProductUrlPathChecker implements UrlPathUsedChecker |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ProductResolverInterface |
||
| 14 | */ |
||
| 15 | private $productResolver; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param ProductResolverInterface $productResolver |
||
| 19 | */ |
||
| 20 | public function __construct(ProductResolverInterface $productResolver) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param UrlPath $urlPath |
||
| 27 | * @param int $storeId |
||
| 28 | * |
||
| 29 | * @return EntityData[] |
||
| 30 | */ |
||
| 31 | public function check(UrlPath $urlPath, int $storeId) : array |
||
| 35 | } |
||
| 36 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.