| Total Complexity | 2 | 
| Total Lines | 39 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 12 | class Group extends AbstractTransformationCompound | ||
| 13 | { | ||
| 14 | /** | ||
| 15 | * @var string | ||
| 16 | */ | ||
| 17 | private $key; | ||
| 18 | |||
| 19 | /** | ||
| 20 | * @var QueryInterface | ||
| 21 | */ | ||
| 22 | private $query; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * @param RethinkInterface $rethink | ||
| 26 | * @param QueryInterface $query | ||
| 27 | * @param string $key | ||
| 28 | */ | ||
| 29 | public function __construct( | ||
| 39 | } | ||
| 40 | |||
| 41 | /** | ||
| 42 | * @inheritdoc | ||
| 43 | */ | ||
| 44 | public function toArray(): array | ||
| 55 |