OutputStyle::setDecorated()

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

OutputStyle::newLine()

newLine(int $count = 1) Add newline(s). Parameters int $count The number of newlines

OutputStyle::isVeryVerbose()

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

OutputStyle::isVerbose()

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

OutputStyle::isQuiet()

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

OutputStyle::isDecorated()

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

OutputStyle::isDebug()

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

OutputStyle::getVerbosity()

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

OutputStyle::getFormatter()

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

OutputStyle::createProgressBar()

ProgressBar createProgressBar(int $max) Parameters int $max Return Value ProgressBar