diff --git a/issue-bot/src/Console/DownloadCommand.php b/issue-bot/src/Console/DownloadCommand.php index d19b0fa9e6f..da8fed6b05f 100644 --- a/issue-bot/src/Console/DownloadCommand.php +++ b/issue-bot/src/Console/DownloadCommand.php @@ -91,7 +91,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $this->savePlaygroundCache(new PlaygroundCache($cachedResults)); $matrix = []; - foreach ([70200, 70300, 70400, 80000, 80100, 80200, 80300, 80400, 80500] as $phpVersion) { + foreach ([70200, 70300, 70400, 80000, 80100, 80200, 80300, 80400, 80500, 80600] as $phpVersion) { $phpVersionHashes = []; foreach ($cachedResults as $hash => $result) { $resultPhpVersions = array_keys($result->getVersionedErrors()); @@ -114,6 +114,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int if (!in_array(80500, $resultPhpVersions, true)) { $resultPhpVersions[] = 80500; } + if (!in_array(80600, $resultPhpVersions, true)) { + $resultPhpVersions[] = 80600; + } if (!in_array($phpVersion, $resultPhpVersions, true)) { continue;