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-18 lines in 4 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

src/Service/Direction/Response/DirectionStatus.php 1 location

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

src/Service/Place/Detail/Response/PlaceDetailStatus.php 1 location

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