1: <?php declare(strict_types=1);
2:
3: namespace Salient\Console\Contract;
4:
5: use Salient\Console\Support\ConsoleTagFormats as TagFormats;
6:
7: interface ConsoleTagFormatFactory
8: {
9: /**
10: * Get an object that maps inline formatting tags to formats
11: */
12: public static function getTagFormats(): TagFormats;
13: }
14: