Skip to content

Commit 84e3ed0

Browse files
ACP2E-561 fixed static test failure
1 parent a0a4063 commit 84e3ed0

File tree

1 file changed

+7
-6
lines changed
  • app/code/Magento/CatalogImportExport/Model/Export

1 file changed

+7
-6
lines changed

app/code/Magento/CatalogImportExport/Model/Export/Product.php

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,14 @@ class Product extends \Magento\ImportExport\Model\Export\Entity\AbstractEntity
123123
protected $_storeIdToCode = [];
124124

125125
/**
126-
* Website ID-to-code.
126+
* Array of Website ID-to-code.
127127
*
128128
* @var array
129129
*/
130130
protected $_websiteIdToCode = [];
131131

132132
/**
133-
* Attribute types
133+
* Attributes type
134134
*
135135
* @var array
136136
*/
@@ -289,7 +289,7 @@ class Product extends \Magento\ImportExport\Model\Export\Entity\AbstractEntity
289289
*
290290
* @var array
291291
*/
292-
protected $imageLabelAttributes = [
292+
private $imageLabelAttributes = [
293293
'base_image_label',
294294
'small_image_label',
295295
'thumbnail_image_label',
@@ -358,7 +358,7 @@ class Product extends \Magento\ImportExport\Model\Export\Entity\AbstractEntity
358358
protected $metadataPool;
359359

360360
/**
361-
* Product entity link field
361+
* Link field of Product entity
362362
*
363363
* @var string
364364
*/
@@ -1386,8 +1386,9 @@ private function appendMultirowData(&$dataRow, $multiRawData)
13861386
/**
13871387
* Add image column if image label exists for all scope
13881388
*
1389-
* @param $dataRow
1390-
* @param $rawData
1389+
* @param array $dataRow
1390+
* @param array $rawData
1391+
* @return void
13911392
*/
13921393
private function updateGalleryImageData(&$dataRow, $rawData)
13931394
{

0 commit comments

Comments
 (0)