1
0
mirror of synced 2024-11-21 20:46:06 +03:00

Fixes for marketplace

This commit is contained in:
Akolzin Dmitry 2019-01-24 16:01:09 +03:00
parent 86124b1978
commit ccb1a6e77d
2 changed files with 4 additions and 3 deletions

View File

@ -19,8 +19,7 @@ class Icml
private $resourceModelProduct;
private $searchCriteriaBuilder;
private $productRepository;
const DIMENSION_FIELDS = ['height', 'length', 'width'];
private $dimensionFields = ['height', 'length', 'width'];
public function __construct(
\Magento\Store\Model\StoreManagerInterface $manager,
@ -444,7 +443,7 @@ class Icml
*/
private function checkDimension($attrCode)
{
foreach (self::DIMENSION_FIELDS as $dimensionField) {
foreach ($this->dimensionFields as $dimensionField) {
if (mb_strpos($attrCode, $dimensionField) !== false) {
return [$dimensionField => $attrCode];
}

View File

@ -1,5 +1,7 @@
<?php
namespace Retailcrm\Retailcrm\Test\Unit\Block\Frontend;
class DaemonCollectorTest extends \PHPUnit\Framework\TestCase
{
private $unit;