Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class SessionStore extends AbstractRequestAwareStore implements StateStore |
||
10 | { |
||
11 | /** |
||
12 | * Save the given state against the given ID returning an associative array to be added as attributes on the form |
||
13 | * action |
||
14 | * |
||
15 | * @param string $id |
||
16 | * @param array $state |
||
17 | * @return array |
||
18 | */ |
||
19 | public function save($id, array $state) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Load state for a given ID |
||
29 | * |
||
30 | * @param string $id |
||
31 | * @return array |
||
32 | */ |
||
33 | public function load($id) |
||
38 |