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   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 2
eloc 4
dl 0
loc 21
rs 10
c 1
b 0
f 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setResponse() 0 3 1
A getResponse() 0 3 1
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