1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Core;
4:
5: /**
6: * File descriptors
7: *
8: * @api
9: */
10: interface FileDescriptor
11: {
12: public const IN = 0;
13: public const OUT = 1;
14: public const ERR = 2;
15: }
16: