Skip to content

Commit eeed485

Browse files
committed
Fixes
1 parent 804d9c0 commit eeed485

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

reference/configuration/framework.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,10 +1271,10 @@ You can also configure the session handler with a DSN. For example:
12711271
12721272
<framework:config>
12731273
<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"/>
12781278
</framework:config>
12791279
</container>
12801280

session.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ sessions, check their default configuration:
2121
# enables the support of sessions in the app
2222
enabled: true
2323
# 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
2525
handler_id: null
2626
# improves the security of the cookies used for sessions
2727
cookie_secure: 'auto'
@@ -42,7 +42,7 @@ sessions, check their default configuration:
4242
<!--
4343
enabled: enables the support of sessions in the app
4444
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
4646
cookie-secure and cookie-samesite: improves the security of the cookies used for sessions
4747
-->
4848
<framework:session enabled="true"
@@ -60,7 +60,7 @@ sessions, check their default configuration:
6060
// enables the support of sessions in the app
6161
'enabled' => true,
6262
// 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
6464
'handler_id' => null,
6565
// improves the security of the cookies used for sessions
6666
'cookie_secure' => 'auto',

0 commit comments

Comments
 (0)