Skip to content

Commit 663f7c2

Browse files
authored
Merge pull request laravel#4735 from vemcogroup/master
Extract 2 core configurations for sessions to environment
2 parents 53686dd + b9ac441 commit 663f7c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: config/session.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
|
7171
*/
7272

73-
'connection' => null,
73+
'connection' => env('SESSION_CONNECTION', null),
7474

7575
/*
7676
|--------------------------------------------------------------------------
@@ -96,7 +96,7 @@
9696
|
9797
*/
9898

99-
'store' => null,
99+
'store' => env('SESSION_STORE', null),
100100

101101
/*
102102
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)