diff --git a/src/Command/ExportProductCommand.php b/src/Command/ExportProductCommand.php index f4a88d9..d551f18 100644 --- a/src/Command/ExportProductCommand.php +++ b/src/Command/ExportProductCommand.php @@ -4,7 +4,7 @@ use Pim\Component\Catalog\Model\ProductInterface; use Pim\Component\Catalog\Query\ProductQueryBuilderFactoryInterface; -use Sylake\AkeneoProducerBundle\Connector\Projector\ItemProjector; +use Sylake\AkeneoProducerBundle\Connector\Projector\ItemProjectorInterface; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; @@ -22,7 +22,7 @@ final class ExportProductCommand extends Command * @param ProductQueryBuilderFactoryInterface $productQueryBuilderFactory * @param ItemProjector $itemProjector */ - public function __construct(ProductQueryBuilderFactoryInterface $productQueryBuilderFactory, ItemProjector $itemProjector) + public function __construct(ProductQueryBuilderFactoryInterface $productQueryBuilderFactory, ItemProjectorInterface $itemProjector) { $this->productQueryBuilderFactory = $productQueryBuilderFactory; $this->itemProjector = $itemProjector;