Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | final class HasChannelQueryBuilder implements QueryBuilderInterface |
||
18 | { |
||
19 | /** @var ChannelContextInterface */ |
||
20 | private $channelContext; |
||
21 | |||
22 | /** @var string */ |
||
23 | private $channelsProperty; |
||
24 | |||
25 | public function __construct(ChannelContextInterface $channelContext, string $channelsProperty) |
||
26 | { |
||
27 | $this->channelContext = $channelContext; |
||
28 | $this->channelsProperty = $channelsProperty; |
||
29 | } |
||
30 | |||
31 | public function buildQuery(array $data): ?AbstractQuery |
||
37 | } |
||
38 | } |
||
39 |