1
0
Fork 0

Fix ConsoleIO::isVerbose behavior

pull/1283/head
Jordi Boggiano 2012-11-02 18:12:08 +01:00
parent 4b531771bd
commit 28053504e5
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class ConsoleIO implements IOInterface
*/
public function isVerbose()
{
return (bool) $this->input->getOption('verbose');
return $this->output->getVerbosity() === OutputInterface::VERBOSITY_VERBOSE;
}
/**