/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/NullOutputFormatter.php (1158B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Formatter; /** * @author Tien Xuan Vo */ final class NullOutputFormatter implements OutputFormatterInterface { private NullOutputFormatterStyle $style; public function format(?string $message): ?string { return null; } public function getStyle(string $name): OutputFormatterStyleInterface { // to comply with the interface we must return a OutputFormatterStyleInterface return $this->style ??= new NullOutputFormatterStyle(); } public function hasStyle(string $name): bool { return false; } public function isDecorated(): bool { return false; } public function setDecorated(bool $decorated): void { // do nothing } public function setStyle(string $name, OutputFormatterStyleInterface $style): void { // do nothing } }