You are here

public function Output::getVerbosity in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Output/Output.php \Symfony\Component\Console\Output\Output::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/Output/Output.php, line 92

Class

Output
Base class for output classes.

Namespace

Symfony\Component\Console\Output

Code

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