With sylius 1.13 i wan’t to override AvailableProductOptionValuesResolver.php
I’ve copied the original class in src/Component/Product/Resolver/AvailableProductOptionValuesResolver.php
and change the namespace and add debug:
<?php
namespace AppComponentProductResolver;
class AvailableProductOptionValuesResolver implements AvailableProductOptionValuesResolverInterface
{
public function resolve(ProductInterface $product, ProductOptionInterface $productOption): Collection
{
dd('modify');
What other changes need to be made for this class to be used? Because here it’s always the file in /vendor/…/AvailableProductOptionValuesResolver that’s used.