1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Gateway\Validator;
- use Magento\Framework\Exception\NotFoundException;
- /**
- * Interface ValidatorPoolInterface
- * @package Magento\Payment\Gateway\Validator
- * @api
- * @since 100.0.2
- */
- interface ValidatorPoolInterface
- {
- /**
- * Returns configured validator
- *
- * @param string $code
- * @return \Magento\Payment\Gateway\Validator\ValidatorInterface
- * @throws NotFoundException
- */
- public function get($code);
- }
|