1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Console;
4:
5: /**
6: * Console output target type flags
7: *
8: * @api
9: */
10: interface ConsoleTargetTypeFlag
11: {
12: public const STREAM = 1;
13: public const STDIO = 2;
14: public const STDOUT = 4;
15: public const STDERR = 8;
16: public const TTY = 16;
17: public const INVERT = 32;
18: }
19: