ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
DimensionGroup.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Data\Dimension;
22
27{
31 protected array $dimension_keys = [];
32
33 public function __construct(array $dimension_keys = [])
34 {
35 $this->dimension_keys = $dimension_keys;
36 }
37
38 public function getDimensionKeys(): array
39 {
41 }
42}
__construct(array $dimension_keys=[])