1 | <?php |
||
18 | final class ChannelProvider implements ChannelProviderInterface |
||
19 | { |
||
20 | /** @var ChannelRepositoryInterface */ |
||
21 | private $channelRepository; |
||
22 | |||
23 | /** @var string */ |
||
24 | private $channelCode; |
||
25 | |||
26 | public function __construct(ChannelRepositoryInterface $channelRepository, string $channelCode) |
||
31 | |||
32 | public function provide(): ChannelInterface |
||
36 | } |
||
37 |