| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | final class HasPriceBetweenQueryBuilder implements QueryBuilderInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var ConcatedNameResolverInterface |
||
| 22 | */ |
||
| 23 | private $channelPricingNameResolver; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | private $pricePropertyPrefix; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param ConcatedNameResolverInterface $channelPricingNameResolver |
||
| 32 | * @param string $pricePropertyPrefix |
||
| 33 | */ |
||
| 34 | public function __construct(ConcatedNameResolverInterface $channelPricingNameResolver, string $pricePropertyPrefix) |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function buildQuery(array $data): ?AbstractQuery |
||
| 52 |