W3cubDocs

/Symfony 4.1

OutputFormatterStyleInterface

interface OutputFormatterStyleInterface

Formatter style interface for defining styles.

Methods

setForeground(string $color = null)

Sets style foreground color.

setBackground(string $color = null)

Sets style background color.

setOption(string $option)

Sets some specific style option.

unsetOption(string $option)

Unsets some specific style option.

setOptions(array $options)

Sets multiple style options at once.

string apply(string $text)

Applies the style to a given text.

Details

setForeground(string $color = null)

Sets style foreground color.

Parameters

string $color The color name

setBackground(string $color = null)

Sets style background color.

Parameters

string $color The color name

setOption(string $option)

Sets some specific style option.

Parameters

string $option The option name

unsetOption(string $option)

Unsets some specific style option.

Parameters

string $option The option name

setOptions(array $options)

Sets multiple style options at once.

Parameters

array $options

string apply(string $text)

Applies the style to a given text.

Parameters

string $text The text to style

Return Value

string