1 | <?php |
||
7 | class ParentDumper implements DumperInterface |
||
8 | { |
||
9 | private $dataAccessorFactory; |
||
10 | |||
11 | private $children; |
||
12 | |||
13 | public function __construct(FactoryInterface $dataAccessorFactory, array $children) |
||
18 | |||
19 | public function setChild($key, ChildDumperInterface $child) |
||
23 | |||
24 | public function dump($value) |
||
42 | } |
||
43 |