Skip to content

Commit b5d418c

Browse files
committed
Issue bot - test PHP 8.4
1 parent bb4fdfc commit b5d418c

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 ([70200, 70300, 70400, 80000, 80100, 80200, 80300] as $phpVersion) {
99+
foreach ([70200, 70300, 70400, 80000, 80100, 80200, 80300, 80400] as $phpVersion) {
100100
$phpVersionHashes = [];
101101
foreach ($cachedResults as $hash => $result) {
102102
$resultPhpVersions = array_keys($result->getVersionedErrors());
@@ -113,6 +113,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int
113113
if (!in_array(80300, $resultPhpVersions, true)) {
114114
$resultPhpVersions[] = 80300;
115115
}
116+
if (!in_array(80400, $resultPhpVersions, true)) {
117+
$resultPhpVersions[] = 80400;
118+
}
116119

117120
if (!in_array($phpVersion, $resultPhpVersions, true)) {
118121
continue;

0 commit comments

Comments
 (0)