Skip to content
This repository has been archived by the owner on Jan 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #53 from DavidFeller/master
Browse files Browse the repository at this point in the history
Replace ItemProjector by ItemProjectorInterface in ExportProductCommand
  • Loading branch information
pamil authored Feb 9, 2018
2 parents d6d7999 + 4b25b8f commit 71f9197
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/ExportProductCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 71f9197

Please sign in to comment.