1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\Quote\Model\ValidationRules;
- use Magento\Framework\Validation\ValidationResultFactory;
- use Magento\Quote\Model\Quote;
- /**
- * @inheritdoc
- */
- class PaymentMethodValidationRule implements QuoteValidationRuleInterface
- {
- /**
- * @var string
- */
- private $generalMessage;
- /**
- * @var ValidationResultFactory
- */
- private $validationResultFactory;
- /**
- * @param ValidationResultFactory $validationResultFactory
- * @param string $generalMessage
- */
- public function __construct(
- ValidationResultFactory $validationResultFactory,
- string $generalMessage = ''
- ) {
- $this->validationResultFactory = $validationResultFactory;
- $this->generalMessage = $generalMessage;
- }
- /**
- * @inheritdoc
- */
- public function validate(Quote $quote): array
- {
- $validationErrors = [];
- $validationResult = $quote->getPayment()->getMethod();
- if (!$validationResult) {
- $validationErrors = [__($this->generalMessage)];
- }
- return [$this->validationResultFactory->create(['errors' => $validationErrors])];
- }
- }
|