/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Session
NameSizeModeActions
Console/-0755rm
Middleware/-0755rm
ArraySessionHandler.php26890644editdlrm
CacheBasedSessionHandler.php20980755editdlrm
composer.json11140755editdlrm
CookieSessionHandler.php28300755editdlrm
DatabaseSessionHandler.php72260644editdlrm
EncryptedStore.php16450644editdlrm
ExistenceAwareInterface.php2540644editdlrm
FileSessionHandler.php26700644editdlrm
LICENSE.md10750644editdlrm
NullSessionHandler.php11380644editdlrm
SessionManager.php63270755editdlrm
SessionServiceProvider.php14890755editdlrm
Store.php143050755editdlrm
TokenMismatchException.php1120755editdlrm
Edit: /var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Session/CacheBasedSessionHandler.php (2098B)
cache = $cache; $this->minutes = $minutes; } /** * {@inheritdoc} * * @return bool */ #[\ReturnTypeWillChange] public function open($savePath, $sessionName) { return true; } /** * {@inheritdoc} * * @return bool */ #[\ReturnTypeWillChange] public function close() { return true; } /** * {@inheritdoc} * * @return string|false */ #[\ReturnTypeWillChange] public function read($sessionId) { return $this->cache->get($sessionId, ''); } /** * {@inheritdoc} * * @return bool */ #[\ReturnTypeWillChange] public function write($sessionId, $data) { return $this->cache->put($sessionId, $data, $this->minutes * 60); } /** * {@inheritdoc} * * @return bool */ #[\ReturnTypeWillChange] public function destroy($sessionId) { return $this->cache->forget($sessionId); } /** * {@inheritdoc} * * @return int|false */ #[\ReturnTypeWillChange] public function gc($lifetime) { return true; } /** * Get the underlying cache repository. * * @return \Illuminate\Contracts\Cache\Repository */ public function getCache() { return $this->cache; } }