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

@@ 237-250 (lines=14) @@
234
                                  } else {
235
                                      echo $key1." --> "."Array() <br>";
236
                                  } 
237
                            } else {
238
                                if (is_object($result1)) {
239
                                    if ($deepPrinting) {
240
                                        echo "<br>$key1 ------><br>";
241
                                        $oarray = (array)$result1;
242
                                        Route4Me::simplePrint($oarray, true);
243
                                        echo "------<br>";
244
                                    } else {
245
                                        echo $key1." --> "."Object <br>";
246
                                    } 
247
                                } else {
248
                                    if (!is_null($result1)) {
249
                                        echo $key1." --> ".$result1."<br>"; 
250
                                    }   
251
                                }
252
                            }
253
                        }
@@ 254-268 (lines=15) @@
251
                                }
252
                            }
253
                        }
254
                    } else {
255
                        if (is_object($result)) {
256
                            if ($deepPrinting) {
257
                                echo "<br>$key ------><br>";
258
                                $oarray = (array)$result;
259
                                Route4Me::simplePrint($oarray, true);
260
                                echo "------<br>";
261
                            } else {
262
                                echo $key." --> "."Object <br>";
263
                            } 
264
                        } else {
265
                            if (!is_null($result)) {
266
                                echo $key." --> ".$result."<br>";
267
                            }
268
                        }
269
                        
270
                    }
271
                    //echo "<br>";