1234567891011121314151617181920212223 |
- <?php
- /**
- * Session validator interface
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Session;
- /**
- * Session validator interface
- */
- interface ValidatorInterface
- {
- /**
- * Validate session
- *
- * @param \Magento\Framework\Session\SessionManagerInterface $session
- * @return void
- * @throws \Magento\Framework\Exception\SessionException
- */
- public function validate(\Magento\Framework\Session\SessionManagerInterface $session);
- }
|