matomo
/
app
/
vendor
/
prefixed
/
symfony
/
console
/
Formatter
/
WrappableOutputFormatterInterface.php
NullOutputFormatter.php
1 year ago
NullOutputFormatterStyle.php
2 years ago
OutputFormatter.php
1 year ago
OutputFormatterInterface.php
2 years ago
OutputFormatterStyle.php
1 year ago
OutputFormatterStyleInterface.php
2 years ago
OutputFormatterStyleStack.php
1 year ago
WrappableOutputFormatterInterface.php
2 years ago
WrappableOutputFormatterInterface.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | namespace Matomo\Dependencies\Symfony\Component\Console\Formatter; |
| 12 | |
| 13 | /** |
| 14 | * Formatter interface for console output that supports word wrapping. |
| 15 | * |
| 16 | * @author Roland Franssen <franssen.roland@gmail.com> |
| 17 | */ |
| 18 | interface WrappableOutputFormatterInterface extends OutputFormatterInterface |
| 19 | { |
| 20 | /** |
| 21 | * Formats a message according to the given styles, wrapping at `$width` (0 means no wrapping). |
| 22 | */ |
| 23 | public function formatAndWrap(?string $message, int $width); |
| 24 | } |
| 25 |