We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d6f18 commit 61e3826Copy full SHA for 61e3826
1 file changed
src/Common/JsonSchema/JsonPatch.php
@@ -78,7 +78,7 @@ protected function handleObject(\stdClass $srcStruct, \stdClass $desStruct, stri
78
79
protected function shouldPartiallyReplace(\stdClass $o1, \stdClass $o2): bool
80
{
81
- return count(array_diff_key((array) $o1, (array) $o2)) < count($o1);
+ return count(array_diff_key((array) $o1, (array) $o2)) < count((array) $o1);
82
}
83
84
protected function arrayDiff(array $a1, array $a2): array
0 commit comments