Skip to content

Commit 3911686

Browse files
committed
minor #15103 [Session] Add missing semicolon (sebpacz)
This PR was merged into the 4.4 branch. Discussion ---------- [Session] Add missing semicolon <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `5.x` for features of unreleased versions). --> Commits ------- 2f3d957 [Session] Add missing semicolon
2 parents e4ec52b + 2f3d957 commit 3911686

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

session/locale_sticky_session.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ via some "Change Locale" route & controller), or create a route with the :ref:`_
109109
$container->register(LocaleSubscriber::class)
110110
->addArgument('%kernel.default_locale%')
111111
// uncomment the next line if you are not using autoconfigure
112-
// ->addTag('kernel.event_subscriber');
112+
// ->addTag('kernel.event_subscriber')
113+
;
113114
114115
That's it! Now celebrate by changing the user's locale and seeing that it's
115116
sticky throughout the request.

0 commit comments

Comments
 (0)