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

src/Route4Me/Route4Me.php 2 locations

@@ 146-149 (lines=4) @@
143
        case 'DELETE':
144
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE"); 
145
            break;
146
        case 'DELETEARRAY':
147
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE"); 
148
            curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($query));
149
            break;
150
        case 'PUT':
151
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
152
            break;
@@ 241-244 (lines=4) @@
238
        case 'DELETE':
239
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE"); 
240
            break;
241
        case 'DELETEARRAY':
242
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "DELETE"); 
243
            curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($query));
244
            break;
245
        case 'PUT':
246
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
247
            break;