@@ -12,16 +12,16 @@ As stated elsewhere, Symfony Sessions are designed to replace the use of
1212PHP's native ``session_*() `` functions and use of the ``$_SESSION ``
1313superglobal. Additionally, it is mandatory for Symfony to start the session.
1414
15- However when there really are circumstances where this is not possible,it is possible
16- to use a special storage bridge
15+ However when there really are circumstances where this is not possible,you
16+ can use a special storage bridge
1717:class: `Symfony\\ Component\\ HttpFoundation\\ Session\\ Storage\\ PhpBridgeSessionStorage `
1818which is designed to allow Symfony to work with a session started outside of
1919the Symfony Session framework. You are warned that things can interrupt this
20- use case unless you are careful: for example legacy application erases ``$_SESSION ``.
20+ use-case unless you are careful: for example the legacy application erases
21+ ``$_SESSION ``.
2122
22- Typical use of this might lookas follows ::
23+ A typical use of this might looklike this ::
2324
24- <?php
2525 use Symfony\Component\HttpFoundation\Session\Session;
2626 use Symfony\Component\HttpFoundation\Session\Storage\PhpBridgeSessionStorage;
2727
@@ -36,14 +36,14 @@ Typical use of this might look as follows::
3636 // symfony will now interface with the existing PHP session
3737 $session->start();
3838
39- This will allow you to start using the Symfony Session API and allow
40- migration of your application to SymfonySessions .
39+ This will allow you to start using the Symfony Session API and allow migration
40+ of your application to Symfonysessions .
4141
4242..note ::
4343
44- SymfonySessions store data like attributes in special 'Bags' which use a
45- key in the ``$_SESSION `` superglobal. This means that a SymfonySession
46- cannot accessarbitary keys in ``$_SESSION `` that may be set by the legacy
44+ Symfonysessions store data like attributes in special 'Bags' which use a
45+ key in the ``$_SESSION `` superglobal. This means that a Symfonysession
46+ cannot accessarbitrary keys in ``$_SESSION `` that may be set by the legacy
4747 application, although all the ``$_SESSION `` contents will be saved when
4848 the session is saved.
4949