You are here

public function OutputStyle::getVerbosity in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Style/OutputStyle.php \Symfony\Component\Console\Style\OutputStyle::getVerbosity()

Gets the current verbosity of the output.

Return value

int The current level of verbosity (one of the VERBOSITY constants)

Overrides OutputInterface::getVerbosity

File

vendor/symfony/console/Style/OutputStyle.php, line 80

Class

OutputStyle
Decorates output to add console style guide helpers.

Namespace

Symfony\Component\Console\Style

Code

public function getVerbosity() {
  return $this->output
    ->getVerbosity();
}