Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed namespace typos
  • Loading branch information
javiereguiluz committed Mar 10, 2016
commit 253240984b9d8f58a342fd7b6dae9fb8b342ebb2
4 changes: 2 additions & 2 deletions cookbook/session/proxy_examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ If you wanted to encrypt the session data, you could use the proxy to encrypt
and decrypt the session as required::

// src/AppBundle/Session/EncryptedSessionProxy.php
namespace AppBundle/Session;
namespace AppBundle\Session;

use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy;

Expand Down Expand Up @@ -118,7 +118,7 @@ where there is no particular need to persist the session. In this case you
can intercept the session before it is written::

// src/AppBundle/Session/ReadOnlySessionProxy.php
namespace AppBundle/Session;
namespace AppBundle\Session;

use AppBundle\Entity\User;
use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy;
Expand Down