Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/JsonSchema/Constraints/UndefinedConstraint.php
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ protected function applyDefaultValues(&$value, $schema, $path)
} else {
$value[$currentItem] = $itemDefinition->default;
}
$path->setFromDefault();
}
$path->setFromDefault();
}
} elseif (
$value instanceof self
Expand Down
5 changes: 5 additions & 0 deletions tests/Constraints/DefaultPropertiesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,11 @@ public function getValidTests()
'{"items":{"default":"b"}, "minItems": 3}',
'["a","b","b"]'
),
array(// #24 items is an array of schema

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Solves #521 (review)

'[{}]',
'{"items":[{"properties":{"propertyOne":{"default":"valueOne"}}}]}',
'[{"propertyOne":"valueOne"}]'
),
);
}

Expand Down