Methods |
public
|
isStdout(): bool
Check if the target writes to STDOUT
Check if the target writes to STDOUT
Implements
|
#
|
public
|
isStderr(): bool
Check if the target writes to STDERR
Check if the target writes to STDERR
Implements
|
#
|
public
|
isTty(): bool
Check if the target writes to a TTY
Check if the target writes to a TTY
Implements
|
#
|
public
|
getUri(): ?string
Get the URI or filename of the target's underlying stream, or null if its
location is unknown
Get the URI or filename of the target's underlying stream, or null if its
location is unknown
Implements
|
#
|
public
|
reopen(): void
Close and reopen the target's underlying stream if possible
Close and reopen the target's underlying stream if possible
Implements
|
#
|
public
|
getFormatter(): FormatterInterface
Get the target's output formatter
Get the target's output formatter
Implements
|
#
|
public
|
getWidth(): ?int
Get the width of the target in columns, or null if output written to the
target should not be wrapped
Get the width of the target in columns, or null if output written to the
target should not be wrapped
Output written to the target may exceed its width, e.g. if a message
contains preformatted text or a long word, but long lines may be
truncated if the target cannot display or record them.
Implements
|
#
|
public
|
write(int $level, string $message, array $context = []): void
Write formatted output to the target
Write formatted output to the target
Implements
|
#
|
public
|
close(): void
Close the target and any underlying resources
Close the target and any underlying resources
Implements
|
#
|
public
|
getMessages(): array<array{ConsoleInterface::LEVEL_*, string, 2?: array<string, mixed>}>
Get messages written to the target and flush its message cache
Get messages written to the target and flush its message cache
|
#
|