File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1271,10 +1271,10 @@ You can also configure the session handler with a DSN. For example:
1271
1271
1272
1272
<framework : config >
1273
1273
<framework : session enabled =" true"
1274
- handler-id =" redis://localhost"
1275
- handler-id =" %env(REDIS_URL)%"
1276
- handler-id =" %env(DATABASE_URL)%"
1277
- handler-id =" file://%kernel.project_dir%/var/sessions" />
1274
+ handler-id =" redis://localhost"
1275
+ handler-id =" %env(REDIS_URL)%"
1276
+ handler-id =" %env(DATABASE_URL)%"
1277
+ handler-id =" file://%kernel.project_dir%/var/sessions" />
1278
1278
</framework : config >
1279
1279
</container >
1280
1280
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ sessions, check their default configuration:
21
21
# enables the support of sessions in the app
22
22
enabled : true
23
23
# ID of the service used for session storage.
24
- # NULL means that Symfony uses PHP's default session mechanism
24
+ # NULL means that Symfony uses PHP default session mechanism
25
25
handler_id : null
26
26
# improves the security of the cookies used for sessions
27
27
cookie_secure : ' auto'
@@ -42,7 +42,7 @@ sessions, check their default configuration:
42
42
<!--
43
43
enabled: enables the support of sessions in the app
44
44
handler-id: ID of the service used for session storage
45
- NULL means that Symfony uses PHP's default session mechanism
45
+ NULL means that Symfony uses PHP default session mechanism
46
46
cookie-secure and cookie-samesite: improves the security of the cookies used for sessions
47
47
-->
48
48
<framework : session enabled =" true"
@@ -60,7 +60,7 @@ sessions, check their default configuration:
60
60
// enables the support of sessions in the app
61
61
'enabled' => true,
62
62
// ID of the service used for session storage
63
- // NULL means that Symfony uses PHP's default session mechanism
63
+ // NULL means that Symfony uses PHP default session mechanism
64
64
'handler_id' => null,
65
65
// improves the security of the cookies used for sessions
66
66
'cookie_secure' => 'auto',
You can’t perform that action at this time.
0 commit comments