/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Session
NameSizeModeActions
Console/-0755rm
Middleware/-0755rm
ArraySessionHandler.php23400644editdlrm
CacheBasedSessionHandler.php17490755editdlrm
composer.json11180755editdlrm
CookieSessionHandler.php24810755editdlrm
DatabaseSessionHandler.php65840644editdlrm
EncryptedStore.php16450644editdlrm
ExistenceAwareInterface.php2540644editdlrm
FileSessionHandler.php23210644editdlrm
LICENSE.md10750644editdlrm
NullSessionHandler.php7890644editdlrm
SessionManager.php63270755editdlrm
SessionServiceProvider.php14860755editdlrm
Store.php140750755editdlrm
TokenMismatchException.php1120755editdlrm
Edit: /var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Session/CacheBasedSessionHandler.php (1749B)
cache = $cache; $this->minutes = $minutes; } /** * {@inheritdoc} */ public function open($savePath, $sessionName) { return true; } /** * {@inheritdoc} */ public function close() { return true; } /** * {@inheritdoc} */ public function read($sessionId) { return $this->cache->get($sessionId, ''); } /** * {@inheritdoc} */ public function write($sessionId, $data) { return $this->cache->put($sessionId, $data, $this->minutes * 60); } /** * {@inheritdoc} */ public function destroy($sessionId) { return $this->cache->forget($sessionId); } /** * {@inheritdoc} */ public function gc($lifetime) { return true; } /** * Get the underlying cache repository. * * @return \Illuminate\Contracts\Cache\Repository */ public function getCache() { return $this->cache; } }