1 | <?php |
||
12 | class ArrayWriter implements Writer |
||
13 | { |
||
14 | use WriterTemplate; |
||
15 | |||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $data; |
||
20 | |||
21 | /** |
||
22 | * @param array $data |
||
23 | */ |
||
24 | 5 | public function __construct(array &$data) |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 4 | public function prepare() |
|
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | 2 | public function writeItem(array $item) |
|
44 | } |
||
45 |