public function Output::setVerbosity in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\OutputCode
public function setVerbosity($level) {
$this->verbosity = (int) $level;
}