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

src/Route4Me/Order.php 2 locations

@@ 297-302 (lines=6) @@
294
                
295
                $cached_lat = 0.000;
296
                
297
                if (!$this->validateLatitude($rows[$ordersFieldsMapping['cached_lat']])) {
298
                    array_push($results['fail'],"$iRow --> Wrong cached_lat"); 
299
                    $iRow++;
300
                    continue;
301
                }
302
                else $cached_lat = doubleval($rows[$ordersFieldsMapping['cached_lat']]);
303
                
304
                $cached_lng = 0.000;
305
                
@@ 306-311 (lines=6) @@
303
                
304
                $cached_lng = 0.000;
305
                
306
                if (!$this->validateLongitude($rows[$ordersFieldsMapping['cached_lng']])) {
307
                    array_push($results['fail'],"$iRow --> Wrong cached_lng"); 
308
                    $iRow++;
309
                    continue;
310
                }
311
                else $cached_lng = doubleval($rows[$ordersFieldsMapping['cached_lng']]);
312
                
313
                if (isset($ordersFieldsMapping['curbside_lat'])) {
314
                    if (!$this->validateLatitude($rows[$ordersFieldsMapping['curbside_lat']])) {