diff --git a/src/Service/AlgoliaQuerier.php b/src/Service/AlgoliaQuerier.php index bdbf28b..212f811 100644 --- a/src/Service/AlgoliaQuerier.php +++ b/src/Service/AlgoliaQuerier.php @@ -13,6 +13,11 @@ */ class AlgoliaQuerier { + /** + * @var array|null $lastResult + */ + protected $lastResult = null; + /** * @param string $selectedIndex * @param string $query @@ -70,6 +75,8 @@ function array_key_first(array $arr) } } + $this->lastResult = $results; + $output = PaginatedList::create($records); if ($results) { @@ -82,4 +89,12 @@ function array_key_first(array $arr) return $output; } + + /** + * @return array|null + */ + public function getLastResult() + { + return $this->lastResult; + } }