File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 4
4
Session Proxy Examples
5
5
----------------------
6
6
7
- The session proxy mechanism has a variety of uses, in this
8
- example we'll demonstrate two common uses. Rather than injecting
9
- the session handler as normal, you inject the handler into the proxy
10
- and regsiter the proxy with the session::
7
+ The session proxy mechanism has a variety of uses, this
8
+ example demonstrates two common uses. Rather than injecting
9
+ the session handler as normal, a handler is injected into the proxy
10
+ and regsitered the proxy with the session::
11
11
12
12
<?php
13
13
use Symfony\Component\HttpFoundation\Session\Session;
@@ -17,8 +17,7 @@ and regsiter the proxy with the session::
17
17
$proxy = new YourProxy(new PdoSessionStorage());
18
18
$session = new Session(new NativeSessionStorage($proxy));
19
19
20
- The example below show should give some ideas for ``YourProxy ``.
21
-
20
+ The examples below show elaborate on two use-cases.
22
21
23
22
Encryption of Session Data
24
23
--------------------------
You can’t perform that action at this time.
0 commit comments