From 75559422251e4ce53d305c178ecc3433a5d06d4e Mon Sep 17 00:00:00 2001 From: Jhonny Lidfors Date: Fri, 10 Apr 2015 08:15:12 +0000 Subject: [PATCH] Use correct Session namespace --- book/internals.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/internals.rst b/book/internals.rst index 0aebef69362..ff9e8c6f5cf 100644 --- a/book/internals.rst +++ b/book/internals.rst @@ -40,8 +40,8 @@ variables: * The :class:`Symfony\\Component\\HttpFoundation\\Response` class abstracts some PHP functions like ``header()``, ``setcookie()``, and ``echo``; -* The :class:`Symfony\\Component\\HttpFoundation\\Session` class and - :class:`Symfony\\Component\\HttpFoundation\\SessionStorage\\SessionStorageInterface` +* The :class:`Symfony\\Component\\HttpFoundation\\Session\\Session` class and + :class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\SessionStorageInterface` interface abstract session management ``session_*()`` functions. .. note::