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.

Error::getError()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Audiens\AdobeClient\Entity;
4
5
/**
6
 * Class Error
7
 */
8
class Error
9
{
10
11
    use HydratableTrait;
12
13
    protected $error_id;
14
15
    protected $error;
16
17
    protected $error_description;
18
19
    protected $error_code;
20
21
    /**
22
     * @return mixed
23
     */
24
    public function getErrorId()
25
    {
26
        return $this->error_id;
27
    }
28
29
    /**
30
     * @return mixed
31
     */
32
    public function getError()
33
    {
34
        return $this->error;
35
    }
36
37
    /**
38
     * @return mixed
39
     */
40
    public function getErrorDescription()
41
    {
42
        return $this->error_description;
43
    }
44
45
    /**
46
     * @return mixed
47
     */
48
    public function getErrorCode()
49
    {
50
        return $this->error_code;
51
    }
52
}
53