You are here

public function Output::setVerbosity in Zircon Profile 8

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

Sets the verbosity of the output.

Parameters

int $level The level of verbosity (one of the VERBOSITY constants):

Overrides OutputInterface::setVerbosity

1 call to Output::setVerbosity()
ConsoleOutput::setVerbosity in vendor/symfony/console/Output/ConsoleOutput.php
Sets the verbosity of the output.
1 method overrides Output::setVerbosity()
ConsoleOutput::setVerbosity in vendor/symfony/console/Output/ConsoleOutput.php
Sets the verbosity of the output.

File

vendor/symfony/console/Output/Output.php, line 84

Class

Output
Base class for output classes.

Namespace

Symfony\Component\Console\Output

Code

public function setVerbosity($level) {
  $this->verbosity = (int) $level;
}