Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | final class ProductVariantRepository implements ProductVariantRepositoryInterface |
||
21 | { |
||
22 | /** @var BaseProductVariantRepositoryInterface|EntityRepository */ |
||
23 | private $baseProductVariantRepository; |
||
24 | |||
25 | public function __construct(BaseProductVariantRepositoryInterface $baseProductVariantRepository) |
||
28 | } |
||
29 | |||
30 | public function findOneByOptionValue(ProductOptionValueInterface $productOptionValue): ?ProductVariantInterface |
||
41 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.