diff --git a/src/Composer/IO/ConsoleIO.php b/src/Composer/IO/ConsoleIO.php index 10e617dc2..85095d951 100644 --- a/src/Composer/IO/ConsoleIO.php +++ b/src/Composer/IO/ConsoleIO.php @@ -83,7 +83,7 @@ class ConsoleIO extends BaseIO */ public function isVeryVerbose() { - return $this->output->getVerbosity() >= 3; // OutputInterface::VERSOBITY_VERY_VERBOSE + return $this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE; } /** @@ -91,7 +91,7 @@ class ConsoleIO extends BaseIO */ public function isDebug() { - return $this->output->getVerbosity() >= 4; // OutputInterface::VERBOSITY_DEBUG + return $this->output->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG; } /**