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 = 16-17 lines in 2 locations

src/Service/Geocoder/Response/GeocoderStatus.php 1 location

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

src/Service/TimeZone/Response/TimeZoneStatus.php 1 location

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