| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class QueryExpressionBuilder implements ExpressionBuilderInterface |
||
| 18 | { |
||
| 19 | use ExpressionBuilderTrait; |
||
| 20 | |||
| 21 | |||
| 22 | /** |
||
| 23 | * Method builds the raw SQL from the $expression that will not be additionally |
||
| 24 | * escaped or quoted. |
||
| 25 | * |
||
| 26 | * @param ExpressionInterface|Query $expression the expression to be built. |
||
| 27 | * @param array $params the binding parameters. |
||
| 28 | * @return string the raw SQL that will not be additionally escaped or quoted. |
||
| 29 | */ |
||
| 30 | public function build(ExpressionInterface $expression, array &$params = []) |
||
| 37 |