for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Stu\Lib\Map\VisualPanel;
use Stu\Lib\Map\VisualPanel\Layer\PanelLayers;
class SignaturePanelEntry implements VisualPanelElementInterface
{
protected int $x;
protected int $y;
protected PanelLayers $layers;
private string $cssClass = 'lss';
public function __construct(
int $x,
int $y,
PanelLayers $layers,
) {
$this->x = $x;
$this->y = $y;
$this->layers = $layers;
}
/** @return array<string> */
public function getRenderedCellLayers(): array
return $this->layers->getRenderedCellLayers($this->x, $this->y);
public function getBorder(): string
return $this->layers->getCellBorder($this->x, $this->y);
public function getCssClass(): string
return $this->cssClass;