Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Cookbook][Sessions] some language improvements #3772

Merged
merged 1 commit into from
Apr 12, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cookbook/session/proxy_examples.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.. index::
single: Sessions, session proxy, proxy
single: Sessions, Session Proxy, Proxy

Session Proxy Examples
======================
Expand All @@ -16,7 +16,7 @@ is injected into the proxy and registered with the session storage driver::
$session = new Session(new NativeSessionStorage(array(), $proxy));

Below, you'll learn two real examples that can be used for ``YourProxy``:
encryption of session data and readonly guest session.
encryption of session data and readonly guest sessions.

Encryption of Session Data
--------------------------
Expand Down Expand Up @@ -56,8 +56,8 @@ Readonly Guest Sessions
-----------------------

There are some applications where a session is required for guest users, but
there is no particular need to persist the session. In this case you can
intercept the session before it writes::
where there is no particular need to persist the session. In this case you
can intercept the session before it is written::

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