NullOutput::setVerbosity()

setVerbosity(int $level) Sets the verbosity of the output. Parameters int $level The level of verbosity (one of the VERBOSITY constants)

NullOutput::setFormatter()

setFormatter(OutputFormatterInterface $formatter) Sets output formatter. Parameters OutputFormatterInterface $formatter

NullOutput::setDecorated()

setDecorated(bool $decorated) Sets the decorated flag. Parameters bool $decorated Whether to decorate the messages

NullOutput::isVeryVerbose()

bool isVeryVerbose() Returns whether verbosity is very verbose (-vv). Return Value bool true if verbosity is set to VERBOSITYVERYVERBOSE, false otherwise

NullOutput::isVerbose()

bool isVerbose() Returns whether verbosity is verbose (-v). Return Value bool true if verbosity is set to VERBOSITY_VERBOSE, false otherwise

NullOutput::isQuiet()

bool isQuiet() Returns whether verbosity is quiet (-q). Return Value bool true if verbosity is set to VERBOSITY_QUIET, false otherwise

NullOutput::isDecorated()

bool isDecorated() Gets the decorated flag. Return Value bool true if the output will decorate messages, false otherwise

NullOutput::isDebug()

bool isDebug() Returns whether verbosity is debug (-vvv). Return Value bool true if verbosity is set to VERBOSITY_DEBUG, false otherwise

NullOutput::getVerbosity()

int getVerbosity() Gets the current verbosity of the output. Return Value int The current level of verbosity (one of the VERBOSITY constants)

NullOutput::getFormatter()

OutputFormatterInterface getFormatter() Returns current output formatter instance. Return Value OutputFormatterInterface