Skip to content

Commit

Permalink
fixes #355
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Kalkbrenner committed Apr 30, 2019
1 parent f0b4c2c commit bdb78b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/2.1.6-helper-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
$query->createFilterQuery('price')->setQuery($helper->rangeQuery('price', 10, 300));

// add a filterquery to find products in a range of 5km, using the helper to generate the 'geofilt' filter
$query->createFilterQuery('region')->setQuery($helper->geofilt(45.15, -93.85, 'store', 5));
$query->createFilterQuery('region')->setQuery($helper->geofilt('store',45.15, -93.85, 5));

// this executes the query and returns the result
$resultset = $client->select($query);
Expand Down

0 comments on commit bdb78b9

Please sign in to comment.