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
                                        $element[] = $riga["$type"];
98
			}

function.php 1 location

@@ 427-429 (lines=3) @@
424
				  case 'ip':
425
					$element = long2ip($riga['ip']);
426
					break;
427
				  case 'network':
428
					$element = long2ip($riga['network']).'/'.long2ip($riga['netmask']);
429
					break;
430
				  default:
431
					$element = $riga["$type"];
432
				}