We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa82c1 commit f0f0c8aCopy full SHA for f0f0c8a
src/Mods/Collection/Filter/ModFilter.php
@@ -13,6 +13,7 @@
13
use CPMDB\Mods\Collection\Indexer\IndexInterface;
14
use CPMDB\Mods\Collection\Indexer\ModIndex;
15
use CPMDB\Mods\Mod\ModInfoInterface;
16
+use Loupe\Loupe\SearchParameters;
17
18
/**
19
* Utility class used to search for mods in the collection
@@ -83,6 +84,12 @@ public function getModIDs() : array
83
84
return $this->getPrimaryIDs();
85
}
86
87
+ protected function resolveSearchParams(): SearchParameters
88
+ {
89
+ return parent::resolveSearchParams()
90
+ ->withHitsPerPage(500);
91
+ }
92
+
93
protected function appendFilters(array &$filters) : void
94
{
95
0 commit comments