mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 09:16:21 +01:00
BUGFIX: Fix accessing non existing property
This commit is contained in:
parent
f311357d0e
commit
9617733826
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ class QueryFactory
|
|||
*/
|
||||
protected function addSize(SearchRequestInterface $searchRequest, array &$query)
|
||||
{
|
||||
$query = ArrayUtility::arrayMergeRecursiveOverrule($this->query, [
|
||||
$query = ArrayUtility::arrayMergeRecursiveOverrule($query, [
|
||||
'from' => $searchRequest->getOffset(),
|
||||
'size' => $searchRequest->getLimit(),
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue