Skip to content

Commit 671e4d6

Browse files
committed
fix typo
1 parent 9207ba3 commit 671e4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bridge/Doctrine/Orm/Filter/ExistsFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ protected function filterProperty(string $property, $value, QueryBuilder $queryB
122122
sprintf('The ExistsFilter syntax "%s[exists]=true/false" is deprecated. Use the syntax "exists[%s]=true/false" instead.', $property, $property),
123123
E_USER_DEPRECATED
124124
);
125-
$value = $value['exists'];
125+
$value = $value[self::QUERY_PARAMETER_KEY];
126126
}
127127

128128
if (\in_array($value, [true, 'true', '1', '', null], true)) {

0 commit comments

Comments
 (0)