From b50db00066626f9404fed6ccb95d0446cf433ac4 Mon Sep 17 00:00:00 2001 From: Ondrej Mirtes Date: Mon, 14 Sep 2026 09:39:00 +0200 Subject: [PATCH] issue-bot: analyse PHP 8.6 --- issue-bot/src/Console/DownloadCommand.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;