Skip to content

Commit f1516ba

Browse files
committed
fixed static issues
1 parent 9104cb5 commit f1516ba

File tree

1 file changed

+11
-1
lines changed
  • app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator

1 file changed

+11
-1
lines changed

app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPrice.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@
99
namespace Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing\Validator;
1010

1111
use Magento\AdvancedPricingImportExport\Model\Import\AdvancedPricing;
12+
use Magento\CatalogImportExport\Model\Import\Product;
1213
use Magento\CatalogImportExport\Model\Import\Product\RowValidatorInterface;
1314
use Magento\CatalogImportExport\Model\Import\Product\StoreResolver;
15+
use Magento\CatalogImportExport\Model\Import\Product\Validator\AbstractImportValidator;
1416
use Magento\CatalogImportExport\Model\Import\Product\Validator\AbstractPrice;
1517
use Magento\Customer\Api\GroupRepositoryInterface;
1618
use Magento\Framework\Api\SearchCriteriaBuilder;
19+
use Magento\Framework\Exception\LocalizedException;
1720

1821
class TierPrice extends AbstractPrice
1922
{
@@ -48,7 +51,12 @@ public function __construct(
4851
}
4952

5053
/**
51-
* {@inheritdoc}
54+
* Initialize method
55+
*
56+
* @param Product $context
57+
*
58+
* @return RowValidatorInterface|AbstractImportValidator|void
59+
* @throws LocalizedException
5260
*/
5361
public function init($context)
5462
{
@@ -59,6 +67,8 @@ public function init($context)
5967
}
6068

6169
/**
70+
* Add decimal error
71+
*
6272
* @param string $attribute
6373
*
6474
* @return void

0 commit comments

Comments
 (0)