| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class ReturnClause extends Clause |
||
| 10 | { |
||
| 11 | protected mixed $expression; |
||
| 12 | |||
| 13 | protected bool $distinct; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * ReturnClause constructor. |
||
| 17 | * |
||
| 18 | * @SuppressWarnings(PHPMD.BooleanArgumentFlag) |
||
| 19 | */ |
||
| 20 | 8 | public function __construct( |
|
| 28 | } |
||
| 29 | |||
| 30 | 8 | public function compile(QueryBuilder $queryBuilder): string |
|
| 45 |