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.

Code Duplication    Length = 15-15 lines in 2 locations

src/Service/Place/Autocomplete/Response/PlaceAutocompleteStatus.php 1 location

@@ 17-31 (lines=15) @@
14
/**
15
 * @author GeLo <[email protected]>
16
 */
17
final class PlaceAutocompleteStatus
18
{
19
    const OK = 'OK';
20
    const ZERO_RESULTS = 'ZERO_RESULTS';
21
    const OVER_QUERY_LIMIT = 'OVER_QUERY_LIMIT';
22
    const REQUEST_DENIED = 'REQUEST_DENIED';
23
    const INVALID_REQUEST = 'INVALID_REQUEST';
24
25
    /**
26
     * @codeCoverageIgnore
27
     */
28
    private function __construct()
29
    {
30
    }
31
}
32

src/Service/Place/Search/Response/PlaceSearchStatus.php 1 location

@@ 17-31 (lines=15) @@
14
/**
15
 * @author GeLo <[email protected]>
16
 */
17
final class PlaceSearchStatus
18
{
19
    const OK = 'OK';
20
    const ZERO_RESULTS = 'ZERO_RESULTS';
21
    const OVER_QUERY_LIMIT = 'OVER_QUERY_LIMIT';
22
    const REQUEST_DENIED = 'REQUEST_DENIED';
23
    const INVALID_REQUEST = 'INVALID_REQUEST';
24
25
    /**
26
     * @codeCoverageIgnore
27
     */
28
    private function __construct()
29
    {
30
    }
31
}
32