1: <?php declare(strict_types=1);
2:
3: namespace Salient\Console\Contract;
4:
5: use Salient\Contract\Console\ConsoleFormatterInterface as FormatterInterface;
6:
7: interface ConsoleFormatterFactory
8: {
9: /**
10: * Get a console output formatter
11: */
12: public static function getFormatter(): FormatterInterface;
13: }
14: