1 | <?php |
||
22 | final class ChannelBasedThemeContext implements ThemeContextInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var ChannelContextInterface |
||
26 | */ |
||
27 | private $channelContext; |
||
28 | |||
29 | /** |
||
30 | * @param ChannelContextInterface $channelContext |
||
31 | */ |
||
32 | public function __construct(ChannelContextInterface $channelContext) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function getTheme() |
||
53 | } |
||
54 |