From 738664e5604f48eff08956f0130a17a0ad5200fd Mon Sep 17 00:00:00 2001 From: Timmy38 <101416770+Timmy38@users.noreply.github.com> Date: Tue, 26 Aug 2025 14:39:43 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B04107=20-=20DBObject::GetName()=20is=20no?= =?UTF-8?q?w=20final?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/dbobject.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/dbobject.class.php b/core/dbobject.class.php index fec3d472a..f9454d69d 100644 --- a/core/dbobject.class.php +++ b/core/dbobject.class.php @@ -1748,9 +1748,9 @@ abstract class DBObject implements iDisplay * @throws \CoreException * @since 3.0.0 N°4106 Method should not be overloaded anymore for performances reasons. It will be set final in 3.1.0 (N°4107) * @since 3.0.0 N°580 New $sType parameter - * + * @since 3.3.0 N°4107 Should never be overriden */ - public function GetName($sType = FriendlyNameType::SHORT) + public final function GetName($sType = FriendlyNameType::SHORT) { return utils::EscapeHtml($this->GetRawName($sType)); }