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

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