Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class NullExpression extends LiteralExpression implements ExpressionInterface |
||
13 | { |
||
14 | /** |
||
15 | * Create an expression. |
||
16 | * |
||
17 | */ |
||
18 | public function __construct() |
||
19 | { |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Compile expression output. |
||
24 | * |
||
25 | * @param QueryBuilder|null $queryBuilder |
||
26 | * @return string |
||
27 | */ |
||
28 | 1 | public function compile(QueryBuilder $queryBuilder = null): string |
|
31 | } |
||
32 | } |
||
33 |