Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function modify(QueryBuilder $qb, $dqlAlias) |
||
29 | { |
||
30 | $selections = []; |
||
31 | foreach ($this->selections as $selection) { |
||
32 | $selection = ArgumentToSelectionConverter::toSelection($selection); |
||
33 | $selections[] = $selection->transform($qb, $dqlAlias); |
||
34 | } |
||
35 | |||
36 | $this->modifySelection($qb, $selections); |
||
37 | } |
||
38 | |||
45 |