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

@@ 179-192 (lines=14) @@
176
                                  } else {
177
                                      echo $key1." --> "."Array() <br>";
178
                                  } 
179
                            } else {
180
                                if (is_object($result1)) {
181
                                    if ($deepPrinting) {
182
                                        echo "<br>$key1 ------><br>";
183
                                        $oarray = (array)$result1;
184
                                        Route4Me::simplePrint($oarray, true);
185
                                        echo "------<br>";
186
                                    } else {
187
                                        echo $key1." --> "."Object <br>";
188
                                    } 
189
                                } else {
190
                                    if (!is_null($result1)) {
191
                                        echo $key1." --> ".$result1."<br>"; 
192
                                    }   
193
                                }
194
                            }
195
                        }
@@ 196-210 (lines=15) @@
193
                                }
194
                            }
195
                        }
196
                    } else {
197
                        if (is_object($result)) {
198
                            if ($deepPrinting) {
199
                                echo "<br>$key ------><br>";
200
                                $oarray = (array)$result;
201
                                Route4Me::simplePrint($oarray, true);
202
                                echo "------<br>";
203
                            } else {
204
                                echo $key." --> "."Object <br>";
205
                            } 
206
                        } else {
207
                            if (!is_null($result)) {
208
                                echo $key." --> ".$result."<br>";
209
                            }
210
                        }
211
                        
212
                    }
213
                    //echo "<br>";