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.
Passed
Push — master ( 4f0198...17f4cd )
by Mehdi
12:14
created

ResponseFilter::getResponse()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 1
b 0
f 1
cc 1
nc 1
nop 0
1
<?php
2
3
namespace eloquentFilter\QueryFilter\Core\FilterBuilder;
4
5
/**
6
 *
7
 */
8
class ResponseFilter
9
{
10
    /**
11
     * @var
12
     */
13
    public $response;
14
15
    /**
16
     * @return mixed
17
     */
18
    public function getResponse()
19
    {
20
        return $this->response;
21
    }
22
23
    /**
24
     * @param mixed $response
25
     */
26
    public function setResponse($response): void
27
    {
28
        $this->response = $response;
29
    }
30
}
31