1 | <?php |
||
20 | final class ThemeMerger implements ThemeMergerInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var HydratorInterface |
||
24 | */ |
||
25 | private $themeHydrator; |
||
26 | |||
27 | /** |
||
28 | * @param HydratorInterface $themeHydrator |
||
29 | */ |
||
30 | public function __construct(HydratorInterface $themeHydrator) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function merge(ThemeInterface $existingTheme, ThemeInterface $loadedTheme) |
||
46 | } |
||
47 |