Copied!

Formatter interface for console output that supports word wrapping.

AbstractInterface
Methods
public abstract Symfony\Component\Console\Formatter\OutputFormatterInterface::format(?string $message) : ?string
 

Formats a message according to the given styles.

public abstract formatAndWrap(?string $message, int $width)
 

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

  • return string
public abstract Symfony\Component\Console\Formatter\OutputFormatterInterface::getStyle(string $name) : Symfony\Component\Console\Formatter\OutputFormatterStyleInterface
 

Gets style options from style with specified name.

  • throws \InvalidArgumentException When style isn't defined
public abstract Symfony\Component\Console\Formatter\OutputFormatterInterface::hasStyle(string $name) : bool
 

Checks if output formatter has style with specified name.

public abstract Symfony\Component\Console\Formatter\OutputFormatterInterface::isDecorated() : bool
 

Whether the output will decorate messages.

public abstract Symfony\Component\Console\Formatter\OutputFormatterInterface::setDecorated(bool $decorated)
 

Sets the decorated flag.

  • return void
public abstract Symfony\Component\Console\Formatter\OutputFormatterInterface::setStyle(string $name, Symfony\Component\Console\Formatter\OutputFormatterStyleInterface $style)
 

Sets a new style.

  • return void
© 2023 Bruce Wells
Search Namespaces \ Classes
Configuration