Skip to content

Commit 3460adc

Browse files
committed
Fixed namespace of Proxy.
1 parent 68db46c commit 3460adc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/http_foundation/session_configuration.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,18 +274,18 @@ further creates an extension point from where custom logic can be added that
274274
works independently of which handler is being wrapped inside.
275275

276276
There are two kinds of save handler class proxies which inherit from
277-
:class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\AbstractProxy`:
278-
they are :class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeProxy`
279-
and :class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\SessionHandlerProxy`.
277+
:class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\AbstractProxy`:
278+
they are :class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\NativeProxy`
279+
and :class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\SessionHandlerProxy`.
280280

281281
:class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage`
282282
automatically injects storage handlers into a save handler proxy unless already
283283
wrapped by one.
284284

285-
:class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\NativeProxy`
285+
:class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\NativeProxy`
286286
is used automatically under PHP 5.3 when internal PHP save handlers are specified
287287
using the ``Native*SessionHandler`` classes, while
288-
:class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Handler\\SessionHandlerProxy`
288+
:class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\Proxy\\SessionHandlerProxy`
289289
will be used to wrap any custom save handlers, that implement :phpclass:`SessionHandlerInterface`.
290290

291291
From PHP 5.4 and above, all session handlers implement :phpclass:`SessionHandlerInterface`

0 commit comments

Comments
 (0)