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

contrib/rbldns/exportdns.php 1 location

@@ 93-95 (lines=3) @@
90
                                  case 'ip':
91
                                        $element[] = long2ip($riga['ip']);
92
                                        break;
93
                                  case 'network':
94
                                        $element[] = long2ip($riga['network']).'/'.long2ip($riga['netmask']);
95
                                        break;
96
                                  default:
97
					$type = $tables["$typedesc"]['field'];
98
                                        $element[] = $riga["$type"];

function.php 1 location

@@ 450-452 (lines=3) @@
447
				  case 'ip':
448
					$element = long2ip($riga['ip']);
449
					break;
450
				  case 'network':
451
					$element = long2ip($riga['network']).'/'.long2ip($riga['netmask']);
452
					break;
453
				  default:
454
					$element = $riga["$type"];
455
				}