diff options
author | Andrey Andreev <narf@devilix.net> | 2022-02-22 11:16:26 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2022-02-22 11:16:26 +0100 |
commit | d4b15bcdbd6a06e01d8de927c1d26f8f5bc4ed6c (patch) | |
tree | 182d0c9991edf51bc0772954153f0a87157762f9 /system/libraries/Session/PHP8SessionWrapper.php | |
parent | c7bf8487eafdaeeb137401eb6f63022ec8798f31 (diff) |
[ci skip] SessionUpdateTimestampHandlerInterface
Diffstat (limited to 'system/libraries/Session/PHP8SessionWrapper.php')
-rw-r--r-- | system/libraries/Session/PHP8SessionWrapper.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/system/libraries/Session/PHP8SessionWrapper.php b/system/libraries/Session/PHP8SessionWrapper.php index c6dfaf7e0..85223b757 100644 --- a/system/libraries/Session/PHP8SessionWrapper.php +++ b/system/libraries/Session/PHP8SessionWrapper.php @@ -47,7 +47,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); * @author Andrey Andreev * @link https://codeigniter.com/userguide3/libraries/sessions.html */ -class CI_SessionWrapper implements SessionHandlerInterface { +class CI_SessionWrapper implements SessionHandlerInterface, SessionUpdateTimestampHandlerInterface { protected CI_Session_driver_interface $driver; @@ -87,4 +87,14 @@ class CI_SessionWrapper implements SessionHandlerInterface { { return $this->driver->gc($maxlifetime); } + + public function updateTimestamp(string $id, string$data): bool + { + return $this->driver->updateTimestamp($id, $data); + } + + public function validateId(string $id): bool + { + return $this->driver->validateId($id); + } } |