public function OutputStyle::setVerbosity in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Style/OutputStyle.php \Symfony\Component\Console\Style\OutputStyle::setVerbosity()
Sets the verbosity of the output.
Parameters
int $level The level of verbosity (one of the VERBOSITY constants):
Overrides OutputInterface::setVerbosity
File
- vendor/
symfony/ console/ Style/ OutputStyle.php, line 72
Class
- OutputStyle
- Decorates output to add console style guide helpers.
Namespace
Symfony\Component\Console\StyleCode
public function setVerbosity($level) {
$this->output
->setVerbosity($level);
}