1 Commits
9.0 ... 9.1

Author SHA1 Message Date
User
4a56e42af4 20250413#1 2025-04-13 12:45:30 +03:00

View File

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