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.
Completed
Push — master ( f91a39...024731 )
by
unknown
03:59
created

AutoReplaceResult::getUniqueValue()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 0
1
<?php
2
namespace Checkdomain\Comodo\Model\Result;
3
4
/**
5
 * Class AutoReplaceResult
6
 */
7
class AutoReplaceResult extends AbstractResult
8
{
9
    protected $certificateID;
10
    protected $expectedDeliveryTime;
11
    protected $uniqueValue;
12
13
    /**
14
     * @param mixed $certificateID
15
     *
16
     * @return AutoReplaceResult
17
     */
18
    public function setCertificateID($certificateID)
19
    {
20
        $this->certificateID = $certificateID;
21
22
        return $this;
23
    }
24
25
    /**
26
     * @return mixed
27
     */
28
    public function getCertificateID()
29
    {
30
        return $this->certificateID;
31
    }
32
33
    /**
34
     * @param int $expectedDeliveryTime
35
     *
36
     * @return AutoReplaceResult
37
     */
38
    public function setExpectedDeliveryTime($expectedDeliveryTime)
39
    {
40
        $this->expectedDeliveryTime = $expectedDeliveryTime;
41
42
        return $this;
43
    }
44
45
    /**
46
     * @return int
47
     */
48
    public function getExpectedDeliveryTime()
49
    {
50
        return $this->expectedDeliveryTime;
51
    }
52
53
    /**
54
     * @return string
55
     */
56
    public function getUniqueValue()
57
    {
58
        return $this->uniqueValue;
59
    }
60
61
    /**
62
     * @param string $uniqueValue
63
     *
64
     * @return AutoReplaceResult
65
     */
66
    public function setUniqueValue($uniqueValue)
67
    {
68
        $this->uniqueValue = $uniqueValue;
69
70
        return $this;
71
    }
72
}
73