1 Commits
7.0 ... 7.1

Author SHA1 Message Date
User
c516546b5d 20250326#1 2025-03-26 16:02:27 +03:00

View File

@@ -28,4 +28,12 @@ abstract class AbstractEntity implements EntityInterface {
return $this->$name ?? "";
}
/**
* @param string $name
* @return bool
*/
public function __isset(string $name): bool {
return isset($this->$name);
}
}