| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class ProductVariantRepository implements ProductVariantRepositoryInterface |
||
| 19 | { |
||
| 20 | /** @var BaseProductVariantRepositoryInterface|EntityRepository */ |
||
| 21 | private $baseProductVariantRepository; |
||
| 22 | |||
| 23 | public function __construct(BaseProductVariantRepositoryInterface $baseProductVariantRepository) |
||
| 26 | } |
||
| 27 | |||
| 28 | public function findOneByOptionValue(ProductOptionValueInterface $productOptionValue): ?ProductVariantInterface |
||
| 39 |
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.