diff --git a/src/Command/CodeStudio/CodeStudioWizardCommand.php b/src/Command/CodeStudio/CodeStudioWizardCommand.php index 9c4ab7e37..192781621 100644 --- a/src/Command/CodeStudio/CodeStudioWizardCommand.php +++ b/src/Command/CodeStudio/CodeStudioWizardCommand.php @@ -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; diff --git a/src/Helpers/TelemetryHelper.php b/src/Helpers/TelemetryHelper.php index d306b1f65..52f784c52 100644 --- a/src/Helpers/TelemetryHelper.php +++ b/src/Helpers/TelemetryHelper.php @@ -56,6 +56,8 @@ public function initializeBugsnag(): void case str_starts_with($report->getMessage(), 'Allowed memory size'): // Exclude i/o errors. case str_starts_with($report->getMessage(), 'fgets'): + // Exclude exhausted disk space. + case str_starts_with($report->getMessage(), 'fwrite'): return false; } // Set user info.