diff options
Diffstat (limited to 'assets/php/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php')
-rw-r--r-- | assets/php/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/assets/php/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php b/assets/php/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php new file mode 100644 index 0000000..0cc02c8 --- /dev/null +++ b/assets/php/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php @@ -0,0 +1,23 @@ +<?php + +interface SessionUpdateTimestampHandlerInterface +{ + /** + * Checks if a session identifier already exists or not. + * + * @param string $key + * + * @return bool + */ + public function validateId($key); + + /** + * Updates the timestamp of a session when its data didn't change. + * + * @param string $key + * @param string $val + * + * @return bool + */ + public function updateTimestamp($key, $val); +} |