TIMTextElem   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 31
ccs 2
cts 2
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace EasyIM\TencentIM\Kernel\Messages;
4
5
/**
6
 * Class TIMTextElem
7
 *
8
 * @package EasyIM\TencentIM\Kernel\Messages
9
 * @author  longing <[email protected]>
10
 */
11
class TIMTextElem extends Message
12
{
13
    /**
14
     * Message type.
15
     *
16
     * @var string
17
     */
18
    protected $type = 'TIMTextElem';
19
20
    /**
21
     * Properties.
22
     *
23
     * @var array
24
     */
25
    protected $properties = ['Text'];
26
27
    /**
28
     * required attr
29
     *
30
     * @var array
31
     */
32
    protected $required = ['Text'];
33
34
    /**
35
     * TIMTextElem constructor.
36
     *
37
     * @param string $Text
38
     */
39 3
    public function __construct(string $Text)
40
    {
41 3
        parent::__construct(compact('Text'));
42 3
    }
43
}
44