Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
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 | public function __construct(PhpSession $session) |
||
16 | { |
||
17 | $this->session = $session; |
||
18 | } |
||
19 | |||
20 | protected function getArray() |
||
23 | } |
||
24 | |||
25 | protected function setArray(array $arr): void |
||
30 |