Remove redundant methods

This commit is contained in:
Stephen Abello
2026-08-28 14:38:08 +02:00
parent db87d0b147
commit 925ee7ae33

View File

@@ -35,7 +35,6 @@ trait tActionCommon
protected string $sLabel;
protected string $sIconClass = '';
protected ?string $sTooltip = null;
protected array $aCssClasses = [];
public function GetUID(): string
{
@@ -80,21 +79,4 @@ trait tActionCommon
$this->sTooltip = $sTooltip;
return $this;
}
public function GetCssClasses(): array
{
return $this->aCssClasses;
}
public function SetCssClasses(array $aCssClasses): static
{
$this->aCssClasses = $aCssClasses;
return $this;
}
public function AddCssClass(string $sCssClass): static
{
$this->aCssClasses[] = $sCssClass;
return $this;
}
}