ValidatorInterface.php 436 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Paypal\Helper\Shortcut;
  7. /**
  8. * Interface \Magento\Paypal\Helper\Shortcut\ValidatorInterface
  9. *
  10. */
  11. interface ValidatorInterface
  12. {
  13. /**
  14. * Validates shortcut
  15. *
  16. * @param string $code
  17. * @param bool $isInCatalog
  18. * @return bool
  19. */
  20. public function validate($code, $isInCatalog);
  21. }