We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8f8fa6 commit 2787d93Copy full SHA for 2787d93
src/Structure/ClassStructureTrait.php
@@ -104,10 +104,8 @@ public function jsonSerialize()
104
$processed = array();
105
if (null !== $properties) {
106
foreach ($properties->getDataKeyMap() as $propertyName => $dataName) {
107
- if (!isset($this->$propertyName)) {
108
- // Skip uninitialized properties
109
- continue;
110
- }
+ // Get uninitialized properties as null; direct access will throw error on typed properties
+ $value = isset($this->$propertyName) ? $this->$propertyName : null;
111
112
$value = $this->$propertyName;
113
0 commit comments