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

UserInfo::getFullName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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