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.

IssueSearchResult::getTotal()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace JiraRestApi\Issue;
4
5
/**
6
 * Issue search result.
7
 */
8
class IssueSearchResult
9
{
10
    /**
11
     * @var string
12
     */
13
    protected $expand;
14
15
    /**
16
     * @var int
17
     */
18
    protected $startAt;
19
20
    /**
21
     * @var int
22
     */
23
    protected $maxResults;
24
25
    /**
26
     * @var int
27
     */
28
    protected $total;
29
30
    /**
31
     * @var Issue[]
32
     */
33
    protected $issues;
34
35
    /**
36
     * @return int
37
     */
38
    public function getStartAt()
39
    {
40
        return $this->startAt;
41
    }
42
43
    /**
44
     * @param int $startAt
45
     */
46
    public function setStartAt($startAt)
47
    {
48
        $this->startAt = $startAt;
49
    }
50
51
    /**
52
     * @return int
53
     */
54
    public function getMaxResults()
55
    {
56
        return $this->maxResults;
57
    }
58
59
    /**
60
     * @param int $maxResults
61
     */
62
    public function setMaxResults($maxResults)
63
    {
64
        $this->maxResults = $maxResults;
65
    }
66
67
    /**
68
     * @return int
69
     */
70
    public function getTotal()
71
    {
72
        return $this->total;
73
    }
74
75
    /**
76
     * @param int $total
77
     */
78
    public function setTotal($total)
79
    {
80
        $this->total = $total;
81
    }
82
83
    /**
84
     * @return Issue[]
85
     */
86
    public function getIssues()
87
    {
88
        return $this->issues;
89
    }
90
91
    /**
92
     * @param Issue[] $issues
93
     */
94
    public function setIssues($issues)
95
    {
96
        $this->issues = $issues;
97
    }
98
99
    /**
100
     * @return string
101
     */
102
    public function getExpand()
103
    {
104
        return $this->expand;
105
    }
106
107
    /**
108
     * @param string $expand
109
     */
110
    public function setExpand($expand)
111
    {
112
        $this->expand = $expand;
113
    }
114
}
115