Skip to content

Commit f3fc83f

Browse files
committed
Issue bot - test PHP 8.5
1 parent 7ed2b07 commit f3fc83f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

issue-bot/src/Console/DownloadCommand.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
9696
}
9797

9898
$matrix = [];
99-
foreach ([70300, 70400, 80000, 80100, 80200, 80300, 80400] as $phpVersion) {
99+
foreach ([70300, 70400, 80000, 80100, 80200, 80300, 80400, 80500] as $phpVersion) {
100100
$phpVersionHashes = [];
101101
foreach ($cachedResults as $hash => $result) {
102102
$resultPhpVersions = array_keys($result->getVersionedErrors());
@@ -116,6 +116,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int
116116
if (!in_array(80400, $resultPhpVersions, true)) {
117117
$resultPhpVersions[] = 80400;
118118
}
119+
if (!in_array(80500, $resultPhpVersions, true)) {
120+
$resultPhpVersions[] = 80500;
121+
}
119122

120123
if (!in_array($phpVersion, $resultPhpVersions, true)) {
121124
continue;

0 commit comments

Comments
 (0)