Skip to content

Commit

Permalink
Issue bot - test PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jun 28, 2023
1 parent e95f537 commit 18657a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion issue-bot/src/Console/DownloadCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}

$matrix = [];
foreach ([70200, 70300, 70400, 80000, 80100, 80200] as $phpVersion) {
foreach ([70200, 70300, 70400, 80000, 80100, 80200, 80300] as $phpVersion) {
$phpVersionHashes = [];
foreach ($cachedResults as $hash => $result) {
$resultPhpVersions = array_keys($result->getVersionedErrors());
Expand All @@ -110,6 +110,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if (!in_array(80200, $resultPhpVersions, true)) {
$resultPhpVersions[] = 80200;
}
if (!in_array(80300, $resultPhpVersions, true)) {
$resultPhpVersions[] = 80300;
}

if (!in_array($phpVersion, $resultPhpVersions, true)) {
continue;
Expand Down

0 comments on commit 18657a4

Please sign in to comment.