/home/desid573/public_html/ims2/system/libraries/Session
NameSizeModeActions
drivers/-0755rm
CI_Session_driver_interface.php22490644editdlrm
index.html1310644editdlrm
OldSessionWrapper.php27610644editdlrm
PHP8SessionWrapper.php29400644editdlrm
Session.php252080644editdlrm
SessionHandlerInterface.php23170644editdlrm
SessionUpdateTimestampHandlerInterface.php22110644editdlrm
Session_driver.php53440644editdlrm
Edit: /home/desid573/public_html/ims2/system/libraries/Session/PHP8SessionWrapper.php (2940B)
driver = $driver; } public function open(string $save_path, string $name): bool { return $this->driver->open($save_path, $name); } public function close(): bool { return $this->driver->close(); } #[\ReturnTypeWillChange] public function read(string $id): mixed { return $this->driver->read($id); } public function write(string $id, string $data): bool { return $this->driver->write($id, $data); } public function destroy(string $id): bool { return $this->driver->destroy($id); } #[\ReturnTypeWillChange] public function gc(int $maxlifetime): mixed { 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); } }