Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class VisualPanelRow |
||
8 | { |
||
9 | private int $y; |
||
10 | |||
11 | /** @var array<VisualPanelElementInterface> */ |
||
12 | private array $entries; |
||
13 | |||
14 | 1 | public function __construct(int $y) |
|
17 | } |
||
18 | |||
19 | 1 | public function getY(): int |
|
20 | { |
||
21 | 1 | return $this->y; |
|
22 | } |
||
23 | |||
24 | 1 | public function addEntry(VisualPanelElementInterface $element): void |
|
27 | } |
||
28 | |||
29 | /** |
||
30 | * @return array<VisualPanelElementInterface> |
||
31 | */ |
||
32 | 1 | public function getEntries(): array |
|
35 | } |
||
36 | } |
||
37 |