ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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=[])