1 | <?php |
||
21 | final class ThemeHydrator implements HydratorInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var HydratorInterface |
||
25 | */ |
||
26 | private $decoratedHydrator; |
||
27 | |||
28 | /** |
||
29 | * @param HydratorInterface $decoratedHydrator |
||
30 | */ |
||
31 | public function __construct(HydratorInterface $decoratedHydrator) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function extract($object) |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function hydrate(array $data, $object) |
||
61 | } |
||
62 |