1
0
Fork 0

Avoid conflicts when composer is wrapped in older sf versions, fixes #1835

pull/1836/head
Jordi Boggiano 2013-04-27 12:30:58 +02:00
parent 73f4ce59ca
commit 37894f66a1
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ class ConsoleIO implements IOInterface
*/ */
public function isVeryVerbose() public function isVeryVerbose()
{ {
return $this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE; return $this->output->getVerbosity() >= 3; // OutputInterface::VERSOBITY_VERY_VERBOSE
} }
/** /**
@ -87,7 +87,7 @@ class ConsoleIO implements IOInterface
*/ */
public function isDebug() public function isDebug()
{ {
return $this->output->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG; return $this->output->getVerbosity() >= 4; // OutputInterface::VERBOSITY_DEBUG
} }
/** /**