phpdoc consistency.

main
Niels Keurentjes 8 years ago
parent 47da91d998
commit 22a6f6c612

@ -57,7 +57,8 @@ class BaseDependencyCommand extends BaseCommand
* *
* @param InputInterface $input * @param InputInterface $input
* @param OutputInterface $output * @param OutputInterface $output
* @param bool @inverted Whether * @param bool $inverted Whether to invert matching process (why-not vs why behaviour)
* @return int|null Exit code of the operation.
*/ */
protected function doExecute(InputInterface $input, OutputInterface $output, $inverted = false) protected function doExecute(InputInterface $input, OutputInterface $output, $inverted = false)
{ {
@ -121,6 +122,7 @@ class BaseDependencyCommand extends BaseCommand
} else { } else {
$this->printTable($output, $results); $this->printTable($output, $results);
} }
return 0;
} }
/** /**

@ -50,6 +50,6 @@ EOT
*/ */
protected function execute(InputInterface $input, OutputInterface $output) protected function execute(InputInterface $input, OutputInterface $output)
{ {
parent::doExecute($input, $output, false); return parent::doExecute($input, $output, false);
} }
} }

@ -50,6 +50,6 @@ EOT
*/ */
protected function execute(InputInterface $input, OutputInterface $output) protected function execute(InputInterface $input, OutputInterface $output)
{ {
parent::doExecute($input, $output, true); return parent::doExecute($input, $output, true);
} }
} }

Loading…
Cancel
Save