Skip to content

Commit

Permalink
Fixed 1.6.0 BC breaks (#82)
Browse files Browse the repository at this point in the history
Fixed 1.6.0 BC breaks
  • Loading branch information
Antoine Guigan authored and jmleroux committed Sep 1, 2016
1 parent e5b7da3 commit 62900a9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Processor/Normalization/AttributeProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Akeneo\Component\Batch\Item\ItemProcessorInterface;
use Pim\Component\Catalog\Model\AttributeInterface;
use Pim\Component\Connector\Processor\Normalization\Processor;

/**
* Attribute processor.
Expand All @@ -18,10 +17,13 @@ class AttributeProcessor implements ItemProcessorInterface
/** @const string */
const ITEM_SEPARATOR = ',';

/** @var ItemProcessorInterface */
protected $baseProcessor;

/**
* @param Processor $baseProcessor
* @param ItemProcessorInterface $baseProcessor
*/
public function __construct(Processor $baseProcessor)
public function __construct(ItemProcessorInterface $baseProcessor)
{
$this->baseProcessor = $baseProcessor;
}
Expand Down

0 comments on commit 62900a9

Please sign in to comment.