Skip to content

Commit 2b2cfe2

Browse files
committed
Fix Multi Type Properties
1 parent 26e1f3b commit 2b2cfe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PropertyProcessor/Property/MultiTypeProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ protected function processSubProperties(
134134
$invalidDefaultValueException = null;
135135
$invalidDefaultValues = 0;
136136

137-
if ($propertyData['default']) {
137+
if (isset($propertyData['default'])) {
138138
$defaultValue = $propertyData['default'];
139139
unset($propertyData['default']);
140140
}

0 commit comments

Comments
 (0)