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