12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\SalesRule\Model\Validator;
- /**
- * Class Pool collects custom validators for items before SalesRules are applied
- */
- class Pool
- {
- /**
- * @var array
- */
- protected $validators = [];
- /**
- * @param array $validators
- */
- public function __construct(array $validators = [])
- {
- $this->validators = $validators;
- }
- /**
- * Get Validators defined in di
- *
- * @param string $type
- * @return array
- */
- public function getValidators($type)
- {
- return isset($this->validators[$type]) ? $this->validators[$type] : [];
- }
- }
|