20250413#1

This commit is contained in:
User
2025-04-13 12:45:30 +03:00
parent 4b1c0d7044
commit 4a56e42af4

View File

@@ -25,7 +25,7 @@ abstract class AbstractEntity implements EntityInterface {
* @return string * @return string
*/ */
public function __get(string $name) { public function __get(string $name) {
return $this->$name ?? ""; return $this->$name ?? null;
} }
/** /**