1 | <?php |
||
8 | class ArrayStorage implements StorageInterface |
||
9 | { |
||
10 | private $array; |
||
11 | |||
12 | 14 | public function __construct(array &$array) |
|
16 | |||
17 | public function getFields() |
||
21 | |||
22 | /** |
||
23 | * (non-PHPdoc). |
||
24 | * |
||
25 | * @see \Mathielen\ImportEngine\Source\SourceInterface::reader() |
||
26 | */ |
||
27 | 10 | public function reader() |
|
31 | |||
32 | /** |
||
33 | * (non-PHPdoc). |
||
34 | * |
||
35 | * @see \Mathielen\ImportEngine\Source\StorageInterface::writer() |
||
36 | */ |
||
37 | 3 | public function writer() |
|
41 | |||
42 | /** |
||
43 | * (non-PHPdoc). |
||
44 | * |
||
45 | * @see \Mathielen\ImportEngine\Source\SourceInterface::info() |
||
46 | */ |
||
47 | 1 | public function info() |
|
55 | } |
||
56 |