diff --git a/src/Composer/Command/DiagnoseCommand.php b/src/Composer/Command/DiagnoseCommand.php
index 893bd5d52..f4d642f49 100644
--- a/src/Composer/Command/DiagnoseCommand.php
+++ b/src/Composer/Command/DiagnoseCommand.php
@@ -474,10 +474,10 @@ EOT
if ($hadError) {
$io->write('FAIL');
- $this->exitCode = 2;
+ $this->exitCode = max($this->exitCode, 2);
} elseif ($hadWarning) {
$io->write('WARNING');
- $this->exitCode = 1;
+ $this->exitCode = max($this->exitCode, 1);
}
if ($result) {
@@ -716,7 +716,7 @@ EOT
*
* @return bool|string
*/
- private function checkConnectivity()
+ private function checkConnectivity()
{
if (!ini_get('allow_url_fopen')) {
$result = 'Skipped because allow_url_fopen is missing.';