Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
18 | final class QueryExpressionBuilder implements ExpressionBuilderInterface |
||
19 | { |
||
20 | public function __construct(private QueryBuilderInterface $queryBuilder) |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @throws Exception |
||
26 | * @throws InvalidArgumentException |
||
27 | * @throws InvalidConfigException |
||
28 | * @throws NotSupportedException |
||
29 | */ |
||
30 | public function build(QueryInterface $expression, array &$params = []): string |
||
36 |