ValidatorInterface.php 542 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Session validator interface
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Session;
  9. /**
  10. * Session validator interface
  11. */
  12. interface ValidatorInterface
  13. {
  14. /**
  15. * Validate session
  16. *
  17. * @param \Magento\Framework\Session\SessionManagerInterface $session
  18. * @return void
  19. * @throws \Magento\Framework\Exception\SessionException
  20. */
  21. public function validate(\Magento\Framework\Session\SessionManagerInterface $session);
  22. }