Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class Rollup extends AbstractGroupBy implements ExprInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var array |
||
11 | */ |
||
12 | protected $fields; |
||
13 | |||
14 | 1 | public function __construct(array $fields) |
|
15 | { |
||
16 | 1 | $this->fields = $fields; |
|
17 | 1 | } |
|
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 1 | protected function getGroupByPart(): string |
|
25 | } |
||
26 | } |
||
27 |