AgreementsValidatorInterface.php 376 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Checkout\Api;
  7. /**
  8. * Interface AgreementsValidatorInterface
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface AgreementsValidatorInterface
  13. {
  14. /**
  15. * @param array $agreementIds
  16. * @return bool
  17. */
  18. public function isValid($agreementIds = []);
  19. }