1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Paypal\Helper\Shortcut;
- /**
- * Interface \Magento\Paypal\Helper\Shortcut\ValidatorInterface
- *
- */
- interface ValidatorInterface
- {
- /**
- * Validates shortcut
- *
- * @param string $code
- * @param bool $isInCatalog
- * @return bool
- */
- public function validate($code, $isInCatalog);
- }
|