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.

AbstractConfiguration::getJiraUser()   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\Configuration;
4
5
use JiraRestApi\Interfaces\ConfigurationInterface;
6
7
/**
8
 * Class AbstractConfiguration
9
 * @package JiraRestApi\Configuration
10
 */
11
abstract class AbstractConfiguration implements ConfigurationInterface
12
{
13
    /**
14
     * Jira host.
15
     *
16
     * @var string
17
     */
18
    protected $jiraHost;
19
20
    /**
21
     * Jira login.
22
     *
23
     * @var string
24
     */
25
    protected $jiraUser;
26
27
    /**
28
     * Jira password.
29
     *
30
     * @var string
31
     */
32
    protected $jiraPassword;
33
34
    /**
35
     * @return string
36
     */
37
    public function getJiraHost()
38
    {
39
        return $this->jiraHost;
40
    }
41
42
    /**
43
     * @return string
44
     */
45
    public function getJiraUser()
46
    {
47
        return $this->jiraUser;
48
    }
49
50
    /**
51
     * @return string
52
     */
53
    public function getJiraPassword()
54
    {
55
        return $this->jiraPassword;
56
    }
57
}
58