/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Session
NameSizeModeActions
Console/-0755rm
Middleware/-0755rm
ArraySessionHandler.php25340644editdlrm
CacheBasedSessionHandler.php17490644editdlrm
composer.json11180644editdlrm
CookieSessionHandler.php24810644editdlrm
DatabaseSessionHandler.php68770644editdlrm
EncryptedStore.php16450644editdlrm
ExistenceAwareInterface.php2540644editdlrm
FileSessionHandler.php23210644editdlrm
LICENSE.md10750644editdlrm
NullSessionHandler.php9830644editdlrm
SessionManager.php63270644editdlrm
SessionServiceProvider.php14890644editdlrm
Store.php143050644editdlrm
TokenMismatchException.php1120644editdlrm
Edit: /home/techb158/immovalet.com/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; } }