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.

GetMDCDomainDetailsResult::setDcvStatus()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
namespace Checkdomain\Comodo\Model\Result;
3
4
/**
5
 * Class GetMDCDomainDetailsResult
6
 * Offers the order Status, requested at comodo
7
 */
8
class GetMDCDomainDetailsResult extends AbstractResult
9
{
10
    /**
11
     * Status for being validated
12
     */
13
    const DCV_VALIDATED = 'Validated';
14
15
    /**
16
     * @var string
17
     */
18
    protected $domainName;
19
20
    /**
21
     * @var string
22
     */
23
    protected $dcvMethod;
24
25
    /**
26
     * @var string
27
     */
28
    protected $dcvStatus;
29
30
    /**
31
     * @param string $dcvMethod
32
     *
33
     * @return GetMDCDomainDetailsResult
34
     */
35
    public function setDcvMethod($dcvMethod)
36
    {
37
        $this->dcvMethod = $dcvMethod;
38
39
        return $this;
40
    }
41
42
    /**
43
     * @return string
44
     */
45
    public function getDcvMethod()
46
    {
47
        return $this->dcvMethod;
48
    }
49
50
    /**
51
     * @param string $dcvStatus
52
     *
53
     * @return GetMDCDomainDetailsResult
54
     */
55
    public function setDcvStatus($dcvStatus)
56
    {
57
        $this->dcvStatus = $dcvStatus;
58
59
        return $this;
60
    }
61
62
    /**
63
     * @return string
64
     */
65
    public function getDcvStatus()
66
    {
67
        return $this->dcvStatus;
68
    }
69
70
    /**
71
     * @param string $domainName
72
     *
73
     * @return GetMDCDomainDetailsResult
74
     */
75
    public function setDomainName($domainName)
76
    {
77
        $this->domainName = $domainName;
78
79
        return $this;
80
    }
81
82
    /**
83
     * @return string
84
     */
85
    public function getDomainName()
86
    {
87
        return $this->domainName;
88
    }
89
}
90