/var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/console/Formatter
NameSizeModeActions
NullOutputFormatter.php11580644editdlrm
NullOutputFormatterStyle.php13690644editdlrm
OutputFormatter.php82050644editdlrm
OutputFormatterInterface.php13010644editdlrm
OutputFormatterStyle.php33010644editdlrm
OutputFormatterStyleInterface.php12160644editdlrm
OutputFormatterStyleStack.php25850644editdlrm
WrappableOutputFormatterInterface.php7140644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/console/Formatter/OutputFormatterInterface.php (1301B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Formatter; /** * Formatter interface for console output. * * @author Konstantin Kudryashov */ interface OutputFormatterInterface { /** * Sets the decorated flag. * * @return void */ public function setDecorated(bool $decorated); /** * Whether the output will decorate messages. */ public function isDecorated(): bool; /** * Sets a new style. * * @return void */ public function setStyle(string $name, OutputFormatterStyleInterface $style); /** * Checks if output formatter has style with specified name. */ public function hasStyle(string $name): bool; /** * Gets style options from style with specified name. * * @throws \InvalidArgumentException When style isn't defined */ public function getStyle(string $name): OutputFormatterStyleInterface; /** * Formats a message according to the given styles. */ public function format(?string $message): ?string; }