diff --git a/Command/AbstractCommand.php b/Command/AbstractCommand.php index 1e35c3a..bb21aec 100644 --- a/Command/AbstractCommand.php +++ b/Command/AbstractCommand.php @@ -95,6 +95,10 @@ abstract class AbstractCommand extends ContainerAwareCommand protected function initialize(InputInterface $input, OutputInterface $output) { parent::initialize($input, $output); + + if ($input->getOption('verbose')) { + $this->additionalPhingArgs[] = 'verbose'; + } $this->input = $input;