Skip to content

Commit

Permalink
Merge branch 'main' into CLI-1402
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell authored Oct 17, 2024
2 parents 68618f3 + 1ffc996 commit 407f282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/CodeStudio/CodeStudioWizardCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
'PHP_version_8.2' => "8.2",
'PHP_version_8.3' => "8.3",
];
$project = $this->io->choice('Select a PHP version', array_values($phpVersions), "8.1");
$project = $this->io->choice('Select a PHP version', array_values($phpVersions), "8.3");
$project = array_search($project, $phpVersions, true);
$phpVersion = $phpVersions[$project];
break;
Expand Down

0 comments on commit 407f282

Please sign in to comment.