1 | <?php |
||
13 | class ProductUpdateAttributeWriter extends AbstractWriter |
||
14 | { |
||
15 | /** |
||
16 | * @var \Mage_Catalog_Model_Product |
||
17 | */ |
||
18 | protected $productModel; |
||
19 | |||
20 | /** |
||
21 | * @param \Mage_Catalog_Model_Product $productModel |
||
22 | */ |
||
23 | public function __construct(\Mage_Catalog_Model_Product $productModel) |
||
27 | |||
28 | /** |
||
29 | * Write item if product exists |
||
30 | * |
||
31 | * @param array $item |
||
32 | * @throws \Jh\DataImportMagento\Exception\MagentoSaveException |
||
33 | */ |
||
34 | public function writeItem(array $item) |
||
53 | } |
||
54 |