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   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 47
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 47
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getJiraHost() 0 4 1
A getJiraUser() 0 4 1
A getJiraPassword() 0 4 1
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