Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | class SessionFactory |
||
12 | { |
||
13 | public function createLocalSession(ContainerInterface $container, $name) |
||
14 | { |
||
15 | $session = new LocalSession($name); |
||
16 | $this->decorateSession($container, $session); |
||
17 | } |
||
18 | |||
19 | protected function decorateSession(ContainerInterface $container, SessionInterface $session) |
||
28 | } |
||
29 | } |
||
30 |