1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Cli;
4:
5: /**
6: * Section names commonly used in help messages
7: *
8: * @api
9: */
10: interface CliHelpSectionName
11: {
12: public const NAME = 'NAME';
13: public const SYNOPSIS = 'SYNOPSIS';
14: public const OPTIONS = 'OPTIONS';
15: public const DESCRIPTION = 'DESCRIPTION';
16: public const EXIT_STATUS = 'EXIT STATUS';
17: public const RETURN_VALUE = 'RETURN VALUE';
18: public const CONFIGURATION = 'CONFIGURATION';
19: public const ENVIRONMENT = 'ENVIRONMENT';
20: public const FILES = 'FILES';
21: public const CONFORMING_TO = 'CONFORMING TO';
22: public const NOTES = 'NOTES';
23: public const EXAMPLES = 'EXAMPLES';
24: public const SEE_ALSO = 'SEE ALSO';
25: public const HISTORY = 'HISTORY';
26: public const BUGS = 'BUGS';
27: public const REPORTING_BUGS = 'REPORTING BUGS';
28: public const AUTHORS = 'AUTHORS';
29: public const COPYRIGHT = 'COPYRIGHT';
30: }
31: