| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class JsonExpressionBuilder implements ExpressionBuilderInterface |
||
| 18 | { |
||
| 19 | use ExpressionBuilderTrait; |
||
| 20 | |||
| 21 | public const PARAM_PREFIX = ':qp'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | * |
||
| 26 | * @param JsonExpression|ExpressionInterface $expression the expression to be built |
||
| 27 | */ |
||
| 28 | 11 | public function build(ExpressionInterface $expression, array &$params = []): string |
|
| 44 |