Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | final class Constants |
||
18 | { |
||
19 | const VERSION = '0.3.0'; |
||
20 | |||
21 | const TYPE_TEXT = 'text'; |
||
22 | const TYPE_STICKER = 'sticker'; |
||
23 | const TYPE_CAROUSEL = 'carousel'; |
||
24 | const TYPE_IMAGE = 'image'; |
||
25 | const TYPE_IMAGE_MAP = 'image_map'; |
||
26 | |||
27 | const MODE_REPLY = 'reply'; |
||
28 | const MODE_PUSH = 'push'; |
||
29 | const MODE_MULTICAST = 'multicast'; |
||
30 | |||
31 | const REVEIVE_TYPE_MESSAGE = 'message'; |
||
32 | const REVEIVE_TYPE_STICKER = 'sticker'; |
||
33 | const REVEIVE_TYPE_FOLLOW = 'follow'; |
||
34 | const REVEIVE_TYPE_MESSAGE_TEXT = 'text'; |
||
35 | |||
36 | public function __construct() |
||
40 |