1 | <?php |
||
7 | final class MessageDefaults |
||
8 | { |
||
9 | /** |
||
10 | * The default channel will be sent to. |
||
11 | */ |
||
12 | const CHANNEL = 'channel'; |
||
13 | |||
14 | /** |
||
15 | * The default user will be sent to. |
||
16 | */ |
||
17 | const USER = 'user'; |
||
18 | |||
19 | /** |
||
20 | * Indicates the text field should be parsed as markdown syntax. |
||
21 | * Default is true. |
||
22 | */ |
||
23 | const MARKDOWN = 'markdown'; |
||
24 | |||
25 | /** |
||
26 | * The default notification will be display. |
||
27 | */ |
||
28 | const NOTIFICATION = 'notification'; |
||
29 | |||
30 | /** |
||
31 | * The default color for the attachments left separator. |
||
32 | */ |
||
33 | const ATTACHMENT_COLOR = 'attachment_color'; |
||
34 | |||
35 | /** |
||
36 | * Get the all possible keys. |
||
37 | * |
||
38 | * @return string[] |
||
39 | */ |
||
40 | 8 | public static function allKeys() |
|
50 | } |
||
51 |