Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class RequestStateStore extends AbstractRequestStateArrayStore implements SingletonInterface |
||
10 | { |
||
11 | private const SESSION_KEY = 'req_state'; |
||
12 | |||
13 | private $session; |
||
14 | |||
15 | 2 | public function __construct(PhpSession $session) |
|
16 | { |
||
17 | 2 | $this->session = $session; |
|
18 | 2 | } |
|
19 | |||
20 | 2 | protected function getArray() |
|
23 | } |
||
24 | |||
25 | 1 | protected function setArray(array $arr): void |
|
30 |