From 4a56e42af40025ffaec4b63c6fdbaed17901b6a9 Mon Sep 17 00:00:00 2001 From: User Date: Sun, 13 Apr 2025 12:45:30 +0300 Subject: [PATCH] 20250413#1 --- src/Entity/AbstractEntity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/AbstractEntity.php b/src/Entity/AbstractEntity.php index ff60a87..e2b7b48 100644 --- a/src/Entity/AbstractEntity.php +++ b/src/Entity/AbstractEntity.php @@ -25,7 +25,7 @@ abstract class AbstractEntity implements EntityInterface { * @return string */ public function __get(string $name) { - return $this->$name ?? ""; + return $this->$name ?? null; } /**