From a3292d45030387080fd297ac20f7cc6f8765bd87 Mon Sep 17 00:00:00 2001 From: Tobias Berchtold Date: Mon, 3 Jul 2017 22:08:26 +0200 Subject: [PATCH] incorrect session short description The session cookie only holds the session token. By default, the data attributes are stored (inside a bag) at a file. @see NativeFileSessionHandler. --- controller.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller.rst b/controller.rst index 0ad55fda4f3..5fe8d124566 100644 --- a/controller.rst +++ b/controller.rst @@ -453,8 +453,8 @@ Managing the Session -------------------- Symfony provides a nice session object that you can use to store information -about the user between requests. By default, Symfony stores the attributes in a -cookie by using native PHP sessions. +about the user between requests. By default, Symfony stores the token in a +cookie and writes the attributes to a file by using native PHP sessions. .. versionadded:: 3.3 The ability to request a ``Session`` instance in controllers was introduced