/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/EncryptedStore.php (1645B)
encrypter = $encrypter; parent::__construct($name, $handler, $id); } /** * Prepare the raw string data from the session for unserialization. * * @param string $data * @return string */ protected function prepareForUnserialize($data) { try { return $this->encrypter->decrypt($data); } catch (DecryptException $e) { return serialize([]); } } /** * Prepare the serialized session data for storage. * * @param string $data * @return string */ protected function prepareForStorage($data) { return $this->encrypter->encrypt($data); } /** * Get the encrypter instance. * * @return \Illuminate\Contracts\Encryption\Encrypter */ public function getEncrypter() { return $this->encrypter; } }