1
0
Fork 0

Use constants directly

pull/3983/head
Rob Bast 2015-04-30 12:10:17 +02:00
parent 7279c25839
commit fb5394ce70
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ class ConsoleIO extends BaseIO
*/ */
public function isVeryVerbose() 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() public function isDebug()
{ {
return $this->output->getVerbosity() >= 4; // OutputInterface::VERBOSITY_DEBUG return $this->output->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG;
} }
/** /**