123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace Symfony\Component\Console\Formatter;
- interface OutputFormatterInterface
- {
-
- public function setDecorated(bool $decorated);
-
- public function isDecorated();
-
- public function setStyle(string $name, OutputFormatterStyleInterface $style);
-
- public function hasStyle(string $name);
-
- public function getStyle(string $name);
-
- public function format(?string $message);
- }
|