Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class PanelLayer |
||
12 | { |
||
13 | /** @var array<int, array<int, CellDataInterface>> */ |
||
14 | private array $data = []; |
||
15 | |||
16 | private LayerRendererInterface $renderer; |
||
17 | |||
18 | /** |
||
19 | * @param array<CellDataInterface> $array |
||
20 | */ |
||
21 | 1 | public function __construct(array $array, LayerRendererInterface $renderer) |
|
28 | } |
||
29 | |||
30 | 1 | public function renderCell(int $x, int $y, AbstractVisualPanel $panel): string |
|
42 |