Skip to content

Commit

Permalink
[5.x] Fix search:results tag when offset and paginate are set (#11386)
Browse files Browse the repository at this point in the history
Co-authored-by: Duncan McClean <[email protected]>
  • Loading branch information
nopticon and duncanmcclean authored Jan 29, 2025
1 parent 37fe836 commit 6969fb6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Search/Result.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,9 @@ public function setSupplement($key, $value)
{
$this->searchable->setSupplement($key, $value);
}

public function __call($method, $args)
{
return $this->searchable->$method(...$args);
}
}

0 comments on commit 6969fb6

Please sign in to comment.