We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0b4c2c commit bdb78b9Copy full SHA for bdb78b9
examples/2.1.6-helper-functions.php
@@ -14,7 +14,7 @@
14
$query->createFilterQuery('price')->setQuery($helper->rangeQuery('price', 10, 300));
15
16
// add a filterquery to find products in a range of 5km, using the helper to generate the 'geofilt' filter
17
-$query->createFilterQuery('region')->setQuery($helper->geofilt(45.15, -93.85, 'store', 5));
+$query->createFilterQuery('region')->setQuery($helper->geofilt('store',45.15, -93.85, 5));
18
19
// this executes the query and returns the result
20
$resultset = $client->select($query);
0 commit comments