Methods |
public
|
__construct(InputInterface $input, OutputInterface $output): void
Create a new Console OutputStyle instance.
Create a new Console OutputStyle instance.
Overrides
|
#
|
public
|
askQuestion(Question $question): mixed
{@inheritdoc}
|
#
|
public
|
write(string|iterable $messages, bool $newline = false, int $options = 0): void
{@inheritdoc}
Parameters
$newline |
Whether to add a newline
|
$options |
A bitmask of options (one of the OUTPUT or VERBOSITY constants),
0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
|
Overrides
|
#
|
public
|
writeln(string|iterable $messages, int $type = self::OUTPUT_NORMAL): void
{@inheritdoc}
Parameters
$type |
A bitmask of options (one of the OUTPUT or VERBOSITY constants),
0 is considered the same as self::OUTPUT_NORMAL | self::VERBOSITY_NORMAL
|
Overrides
|
#
|
public
|
newLine(int $count = 1): void
{@inheritdoc}
|
#
|
public
|
newLinesWritten()
{@inheritdoc}
|
#
|
public
|
newLineWritten()
{@inheritdoc}
|
#
|
protected
|
trailingNewLineCount($messages)
|
#
|
public
|
isQuiet(): bool
Returns whether verbosity is quiet (-q).
Returns whether verbosity is quiet (-q).
Overrides
|
#
|
public
|
isVerbose(): bool
Returns whether verbosity is verbose (-v).
Returns whether verbosity is verbose (-v).
Overrides
|
#
|
public
|
isVeryVerbose(): bool
Returns whether verbosity is very verbose (-vv).
Returns whether verbosity is very verbose (-vv).
Overrides
|
#
|
public
|
isDebug(): bool
Returns whether verbosity is debug (-vvv).
Returns whether verbosity is debug (-vvv).
Overrides
|
#
|
public
|
getOutput(): OutputInterface
Get the underlying Symfony output implementation.
Get the underlying Symfony output implementation.
|
#
|