1 | <?php |
||
11 | class SessionAdapter implements AdapterInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var SessionInterface |
||
16 | */ |
||
17 | protected $session; |
||
18 | |||
19 | 1 | public function __construct(SessionInterface $session) |
|
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | 1 | public function set($name, $object) |
|
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | 1 | public function has($name) |
|
39 | |||
40 | |||
41 | /** |
||
42 | * @inheritdoc |
||
43 | */ |
||
44 | 1 | public function get($name) |
|
48 | } |
||
49 |