1 | <?php |
||
7 | class ArrayStorage implements StorageInterface |
||
8 | { |
||
9 | |||
10 | private $array; |
||
11 | |||
12 | 4 | public function __construct(array &$array) |
|
16 | |||
17 | public function getFields() |
||
21 | |||
22 | /** |
||
23 | * (non-PHPdoc) |
||
24 | * @see \Mathielen\ImportEngine\Source\SourceInterface::reader() |
||
25 | */ |
||
26 | 3 | public function reader() |
|
30 | |||
31 | /** |
||
32 | * (non-PHPdoc) |
||
33 | * @see \Mathielen\ImportEngine\Source\StorageInterface::writer() |
||
34 | */ |
||
35 | 1 | public function writer() |
|
39 | |||
40 | /** |
||
41 | * (non-PHPdoc) |
||
42 | * @see \Mathielen\ImportEngine\Source\SourceInterface::info() |
||
43 | */ |
||
44 | 1 | public function info() |
|
52 | |||
53 | } |
||
54 |