| Total Complexity | 2 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class Group extends AbstractQuery |
||
| 14 | { |
||
| 15 | use TransformationTrait; |
||
| 16 | use OperationTrait; |
||
| 17 | use AggregationTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $key; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var QueryInterface |
||
| 26 | */ |
||
| 27 | private $query; |
||
| 28 | |||
| 29 | public function __construct( |
||
| 39 | } |
||
| 40 | |||
| 41 | public function toArray(): array |
||
| 52 |