![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-session/src/Validator/ |
<?php namespace Laminas\Session\Validator; /** * Session validator interface */ interface ValidatorInterface { /** * This method will be called at the beginning of * every session to determine if the current environment matches * that which was store in the setup() procedure. * * @return bool */ public function isValid(); /** * Get data from validator to be used for validation comparisons * * @return mixed */ public function getData(); /** * Get validator name for use with storing validators between requests * * @return string */ public function getName(); }