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 a172cfa commit 7874ad1Copy full SHA for 7874ad1
1 file changed
src/Database/Validator/Operator.php
@@ -148,7 +148,7 @@ private function validateOperatorForAttribute(
148
149
// Handle both Document objects and arrays
150
$type = $attribute instanceof Document ? $attribute->getAttribute('type') : $attribute['type'];
151
- $isArray = $attribute instanceof Document? ($attribute->getAttribute('array') ?? false) : ($attribute['array'] ?? false);
+ $isArray = $attribute instanceof Document ? ($attribute->getAttribute('array') ?? false) : ($attribute['array'] ?? false);
152
153
// Array operators that carry a caller-supplied value list are capped to guard against
154
// memory exhaustion. Enforced here so every adapter rejects an oversized list the same way.
0 commit comments