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

@@ 230-235 (lines=6) @@
227
                    
228
                    $cached_lat=0.000;
229
                    
230
                    if (!$this->validateLatitude($rows[$ordersFieldsMapping['cached_lat']])) {
231
                        array_push($results['fail'],"$iRow --> Wrong cached_lat"); 
232
                        $iRow++;
233
                        continue;
234
                    }
235
                    else $cached_lat=doubleval($rows[$ordersFieldsMapping['cached_lat']]);
236
                    
237
                    $cached_lng=0.000;
238
                    
@@ 239-244 (lines=6) @@
236
                    
237
                    $cached_lng=0.000;
238
                    
239
                    if (!$this->validateLongitude($rows[$ordersFieldsMapping['cached_lng']])) {
240
                        array_push($results['fail'],"$iRow --> Wrong cached_lng"); 
241
                        $iRow++;
242
                        continue;
243
                    }
244
                    else $cached_lng=doubleval($rows[$ordersFieldsMapping['cached_lng']]);
245
                    
246
                    
247