| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | 1 | public function compile(QueryBuilder $queryBuilder): string |
|
| 20 | { |
||
| 21 | 1 | $this->keepVariable = $queryBuilder->normalizeArgument($this->keepVariable, 'Variable'); |
|
| 22 | 1 | $queryBuilder->registerVariable($this->keepVariable); |
|
| 23 | |||
| 24 | |||
| 25 | 1 | return 'KEEP ' . $this->keepVariable->compile($queryBuilder); |
|
| 26 | } |
||
| 28 |