/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/SessionServiceProvider.php (1486B)
registerSessionManager(); $this->registerSessionDriver(); $this->app->singleton(StartSession::class, function () { return new StartSession($this->app->make(SessionManager::class), function () { return $this->app->make(CacheFactory::class); }); }); } /** * Register the session manager instance. * * @return void */ protected function registerSessionManager() { $this->app->singleton('session', function ($app) { return new SessionManager($app); }); } /** * Register the session driver instance. * * @return void */ protected function registerSessionDriver() { $this->app->singleton('session.store', function ($app) { // First, we will create the session manager which is responsible for the // creation of the various session drivers when they are needed by the // application instance, and will resolve them on a lazy load basis. return $app->make('session')->driver(); }); } }