Total Complexity | 6 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class EdgeCollectionsClause extends Clause |
||
13 | { |
||
14 | /** |
||
15 | * @var array<array<string>|Expression> $edgeCollections |
||
16 | */ |
||
17 | protected array $edgeCollections; |
||
18 | |||
19 | /** |
||
20 | * @param array<array<string>|Expression> $edgeCollections |
||
21 | */ |
||
22 | 3 | public function __construct(array $edgeCollections) |
|
27 | } |
||
28 | |||
29 | /** |
||
30 | * @SuppressWarnings(PHPMD.UndefinedVariable) |
||
31 | * |
||
32 | * @throws ExpressionTypeException |
||
33 | */ |
||
34 | 3 | public function compile(QueryBuilder $queryBuilder): string |
|
59 |