You are here

public function NullOutput::getVerbosity in Zircon Profile 8

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

Class

NullOutput
NullOutput suppresses all output.

Namespace

Symfony\Component\Console\Output

Code

public function getVerbosity() {
  return self::VERBOSITY_QUIET;
}