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

modules/member/member.admin.controller.php 2 locations

@@ 455-458 (lines=4) @@
452
				$signupItem->isPublic = 'N';
453
			}
454
			$signupItem->isIdentifier = ($key == $identifier);
455
			if ($signupItem->imageType){
456
				$signupItem->max_width = $config->{$key.'_max_width'};
457
				$signupItem->max_height = $config->{$key.'_max_height'};
458
			}
459
			if($signupItem->isIdentifier)
460
				array_unshift($list_order, $signupItem);
461
			else
@@ 479-483 (lines=5) @@
476
				$signupItem->isUse = ($item_info->is_active == 'Y');
477
				$signupItem->isPublic = ($signupItem->isUse) ? 'Y' : 'N';
478
				$signupItem->description = $item_info->description;
479
				if($signupItem->imageType)
480
				{
481
					$signupItem->max_width = $config->{$key.'_max_width'};
482
					$signupItem->max_height = $config->{$key.'_max_height'};
483
				}
484
				$list_order[] = $signupItem;
485
			}
486
		}