Constants   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 21
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
/*
4
 * This file is part of the LineMob package.
5
 *
6
 * (c) Ishmael Doss <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace LineMob\Core;
13
14
/**
15
 * @author Ishmael Doss <[email protected]>
16
 */
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()
37
    {
38
    }
39
}
40