Documentation

OutputFormatter
in package
implements WrappableOutputFormatterInterface

Formatter class for console output.

Tags
author

Konstantin Kudryashov ever.zet@gmail.com

author

Roland Franssen franssen.roland@gmail.com

Table of Contents

Interfaces

WrappableOutputFormatterInterface
Formatter interface for console output that supports word wrapping.

Properties

$decorated  : mixed
$styles  : mixed
$styleStack  : mixed

Methods

__clone()  : mixed
__construct()  : mixed
Initializes console output formatter.
escape()  : string
Escapes "<" and ">" special chars in given text.
format()  : string
Formats a message according to the given styles.
formatAndWrap()  : mixed
Formats a message according to the given styles, wrapping at `$width` (0 means no wrapping).
getStyle()  : OutputFormatterStyleInterface
Gets style options from style with specified name.
getStyleStack()  : OutputFormatterStyleStack
hasStyle()  : bool
Checks if output formatter has style with specified name.
isDecorated()  : bool
Gets the decorated flag.
setDecorated()  : mixed
Sets the decorated flag.
setStyle()  : mixed
Sets a new style.
applyCurrentStyle()  : string
Applies current style from stack to text, if must be applied.
createStyleFromString()  : OutputFormatterStyleInterface|null
Tries to create new style instance from string.

Properties

Methods

escape()

Escapes "<" and ">" special chars in given text.

public static escape(string $text) : string
Parameters
$text : string

Text to escape

Return values
string

Escaped text

format()

Formats a message according to the given styles.

public format(mixed $message) : string
Parameters
$message : mixed

The message to style

Return values
string

The styled message

formatAndWrap()

Formats a message according to the given styles, wrapping at `$width` (0 means no wrapping).

public formatAndWrap(string $message, int $width) : mixed
Parameters
$message : string
$width : int

hasStyle()

Checks if output formatter has style with specified name.

public hasStyle(mixed $name) : bool
Parameters
$name : mixed
Return values
bool

isDecorated()

Gets the decorated flag.

public isDecorated() : bool
Return values
bool

true if the output will decorate messages, false otherwise

setDecorated()

Sets the decorated flag.

public setDecorated(mixed $decorated) : mixed
Parameters
$decorated : mixed

Whether to decorate the messages or not

applyCurrentStyle()

Applies current style from stack to text, if must be applied.

private applyCurrentStyle(string $text, string $current, int $width, int &$currentLineLength) : string
Parameters
$text : string
$current : string
$width : int
$currentLineLength : int
Return values
string

        
On this page

Search results