diff --git a/bin/app.php b/bin/app.php index 42061a6..727bc35 100644 --- a/bin/app.php +++ b/bin/app.php @@ -18,7 +18,7 @@ $scraper = new MemoryQVLScraper(); $page = $downloader->download($qualifiedVendorList); $configurations = $scraper->scrape($page); $selection = $configurations->filter(static function (MemoryConfiguration $memory) { - in_array($memory->numberOfModules, [2, 4]) + return in_array($memory->numberOfModules, [2, 4]) && $memory->totalSize >= 16 && $memory->speed >= 3600 && $memory->overclockingVerified;