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

src/Route4Me/Route4Me.php 2 locations

@@ 311-324 (lines=14) @@
308
                                  } else {
309
                                      echo $key1." --> "."Array() <br>";
310
                                  } 
311
                            } else {
312
                                if (is_object($result1)) {
313
                                    if ($deepPrinting) {
314
                                        echo "<br>$key1 ------><br>";
315
                                        $oarray=(array)$result1;
316
                                        Route4Me::simplePrint($oarray,true);
317
                                        echo "------<br>";
318
                                    } else {
319
                                        echo $key1." --> "."Object <br>";
320
                                    } 
321
                                } else {
322
                                    if (!is_null($result1)) echo $key1." --> ".$result1."<br>";    
323
                                }
324
                            }
325
                        }
326
                    } else {
327
                        if (is_object($result)) {
@@ 326-340 (lines=15) @@
323
                                }
324
                            }
325
                        }
326
                    } else {
327
                        if (is_object($result)) {
328
                            if ($deepPrinting) {
329
                                echo "<br>$key ------><br>";
330
                                $oarray=(array)$result;
331
                                Route4Me::simplePrint($oarray,true);
332
                                echo "------<br>";
333
                            } else {
334
                                echo $key." --> "."Object <br>";
335
                            } 
336
                        } else {
337
                            if (!is_null($result)) echo $key." --> ".$result."<br>";
338
                        }
339
                        
340
                    }
341
                    //echo "<br>";
342
                }
343
            }