1 | <?php |
||
7 | class DataRepository |
||
8 | { |
||
9 | /** |
||
10 | * @var int[] |
||
11 | */ |
||
12 | private $pids = array(); |
||
13 | |||
14 | /** |
||
15 | * load data |
||
16 | * |
||
17 | * @param int $pid |
||
18 | * @return \Ackintosh\Snidel\Data |
||
19 | */ |
||
20 | public function load($pid) |
||
28 | |||
29 | /** |
||
30 | * @return void |
||
31 | * @throws \Ackintosh\Snidel\SharedMemoryControlException |
||
32 | */ |
||
33 | public function deleteAll() |
||
44 | } |
||
45 |