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

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