From 3a2dd35c41e352564adba7b1c926242af2356aff Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:59:31 +0100 Subject: [PATCH] chore(config): remove unused session options --- config/session.php | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/config/session.php b/config/session.php index 20327a872..dd886bdef 100644 --- a/config/session.php +++ b/config/session.php @@ -50,19 +50,6 @@ return [ 'encrypt' => env('SESSION_ENCRYPT', true), - /* - |-------------------------------------------------------------------------- - | Session File Location - |-------------------------------------------------------------------------- - | - | When utilizing the "file" session driver, the session files are placed - | on disk. The default storage location is defined here; however, you - | are free to provide another location where they should be stored. - | - */ - - 'files' => storage_path('framework/sessions'), - /* |-------------------------------------------------------------------------- | Session Database Connection @@ -76,19 +63,6 @@ return [ 'connection' => env('SESSION_CONNECTION', 'sessions'), - /* - |-------------------------------------------------------------------------- - | Session Database Table - |-------------------------------------------------------------------------- - | - | When using the "database" session driver, you may specify the table to - | be used to store sessions. Of course, a sensible default is defined - | for you; however, you're welcome to change this to another table. - | - */ - - 'table' => env('SESSION_TABLE', 'sessions'), - /* |-------------------------------------------------------------------------- | Session Cache Store