Completed
Push — master ( 831cd8...4849d0 )
by
unknown
45:37 queued 20:41
created

UserInfo   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 45
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getEmail() 0 4 1
A getFullName() 0 4 1
A getVideoManagerIds() 0 4 1
1
<?php
2
3
namespace MovingImage\Client\VMPro\Entity;
4
5
use JMS\Serializer\Annotation\SerializedName;
6
use JMS\Serializer\Annotation\Type;
7
8
class UserInfo
9
{
10
    /**
11
     * @Type("string")
12
     */
13
    private $email;
14
15
    /**
16
     * @Type("string")
17
     * @SerializedName("fullName")
18
     */
19
    private $fullName;
20
21
    /**
22
     * @Type("array")
23
     * @SerializedName("videoManagerIds")
24
     */
25
    private $videoManagerIds = [];
26
27
    /**
28
     * @return string
29
     */
30
    public function getEmail()
31
    {
32
        return $this->email;
33
    }
34
35
    /**
36
     * @return string
37
     */
38
    public function getFullName()
39
    {
40
        return $this->fullName;
41
    }
42
43
    /**
44
     * @return int[]
45
     */
46
    public function getVideoManagerIds()
47
    {
48
        return $this->videoManagerIds;
49
    }
50
51
52
}
53