From 925ee7ae3327a4c540b9f3d4eb676ef2a917c18e Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Fri, 28 Aug 2026 14:38:08 +0200 Subject: [PATCH] Remove redundant methods --- .../UI/Base/Common/Action/tActionCommon.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/sources/Application/UI/Base/Common/Action/tActionCommon.php b/sources/Application/UI/Base/Common/Action/tActionCommon.php index e2f29a6d89..990b67b37b 100644 --- a/sources/Application/UI/Base/Common/Action/tActionCommon.php +++ b/sources/Application/UI/Base/Common/Action/tActionCommon.php @@ -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; - } }