1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Cli; |
4: | |
5: | /** |
6: | * Help message targets |
7: | * |
8: | * @api |
9: | */ |
10: | interface CliHelpTarget |
11: | { |
12: | /** |
13: | * Help is written to the console with minimal formatting |
14: | */ |
15: | public const PLAIN = 0; |
16: | |
17: | /** |
18: | * Help is written to the console with normal formatting |
19: | */ |
20: | public const NORMAL = 1; |
21: | |
22: | /** |
23: | * Help is written as Markdown |
24: | */ |
25: | public const MARKDOWN = 2; |
26: | |
27: | /** |
28: | * Help is written as Markdown with man page extensions |
29: | */ |
30: | public const MAN_PAGE = 3; |
31: | } |
32: |