GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

GetDCVEMailAddressListResult::getLevel2Emails()   A
last analyzed

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
namespace Checkdomain\Comodo\Model\Result;
3
4
/**
5
 * Class GetDCVEMailAddressListResult
6
 * Offers the email-addresses, requested at comodo
7
 */
8
class GetDCVEMailAddressListResult extends AbstractResult
9
{
10
    /**
11
     * @var string
12
     */
13
    protected $domainName;
14
15
    /**
16
     * @var string
17
     */
18
    protected $whoisEmail;
19
20
    /**
21
     * @var array
22
     */
23
    protected $level2Email;
24
25
    /**
26
     * @var array
27
     */
28
    protected $level3Email;
29
30
    /**
31
     * @param string $domainName
32
     *
33
     * @return GetDCVEMailAddressListResult
34
     */
35
    public function setDomainName($domainName)
36
    {
37
        $this->domainName = $domainName;
38
39
        return $this;
40
    }
41
42
    /**
43
     * @return string
44
     */
45
    public function getDomainName()
46
    {
47
        return $this->domainName;
48
    }
49
50
    /**
51
     * @param array $level2Email
52
     *
53
     * @return GetDCVEMailAddressListResult
54
     */
55
    public function setLevel2Emails($level2Email)
56
    {
57
        $this->level2Email = $level2Email;
58
59
        return $this;
60
    }
61
62
    /**
63
     * @return array
64
     */
65
    public function getLevel2Emails()
66
    {
67
        return $this->level2Email;
68
    }
69
70
    /**
71
     * @param array $level3Email
72
     *
73
     * @return GetDCVEMailAddressListResult
74
     */
75
    public function setLevel3Emails($level3Email)
76
    {
77
        $this->level3Email = $level3Email;
78
79
        return $this;
80
    }
81
82
    /**
83
     * @return array
84
     */
85
    public function getLevel3Emails()
86
    {
87
        return $this->level3Email;
88
    }
89
90
    /**
91
     * @param string $whoisEmail
92
     *
93
     * @return GetDCVEMailAddressListResult
94
     */
95
    public function setWhoisEmail($whoisEmail)
96
    {
97
        $this->whoisEmail = $whoisEmail;
98
99
        return $this;
100
    }
101
102
    /**
103
     * @return string
104
     */
105
    public function getWhoisEmail()
106
    {
107
        return $this->whoisEmail;
108
    }
109
}
110