1 | <?php |
||
8 | class WebHook extends AbstractCommand implements WebHookInterface |
||
9 | { |
||
10 | const COMMAND_DELIMITER = ':'; |
||
11 | |||
12 | protected $required = [ |
||
13 | 'token', |
||
14 | 'team_id', |
||
15 | 'team_domain', |
||
16 | 'service_id', |
||
17 | 'channel_id', |
||
18 | 'channel_name', |
||
19 | 'timestamp', |
||
20 | 'user_id', |
||
21 | 'user_name', |
||
22 | 'text', |
||
23 | ]; |
||
24 | |||
25 | /** |
||
26 | * @param OptionsResolver $resolver |
||
27 | */ |
||
28 | 7 | protected function setDefaultOptions(OptionsResolver $resolver) |
|
55 | } |
||
56 |