Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 317c868

Browse files
committed
bug #5438 Fixed 404 at Configuring Sessions and Save Handlers (2.3 branch) (suzuki)
This PR was merged into the 2.3 branch. Discussion ---------- Fixed 404 at Configuring Sessions and Save Handlers (2.3 branch) Retry #5434 Changed branch 2.7 to 2.3. --- I found 404 at http://symfony.com/doc/current/components/http_foundation/session_configuration.html | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3 | Fixed tickets | - Commits ------- 3460adc Fixed namespace of Proxy.
2 parents e9db724 + 3460adc commit 317c868

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)