Skip to content

Commit 2787d93

Browse files
fix nullable fields (#148)
1 parent a8f8fa6 commit 2787d93

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Structure/ClassStructureTrait.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,8 @@ public function jsonSerialize()
104104
$processed = array();
105105
if (null !== $properties) {
106106
foreach ($properties->getDataKeyMap() as $propertyName => $dataName) {
107-
if (!isset($this->$propertyName)) {
108-
// Skip uninitialized properties
109-
continue;
110-
}
107+
// Get uninitialized properties as null; direct access will throw error on typed properties
108+
$value = isset($this->$propertyName) ? $this->$propertyName : null;
111109

112110
$value = $this->$propertyName;
113111

0 commit comments

Comments
 (0)