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

modules/member/member.controller.php 2 locations

@@ 2101-2101 (lines=1) @@
2098
		// Control of essential parameters
2099
		if($args->allow_mailing!='Y') $args->allow_mailing = 'N';
2100
		if($args->denied!='Y') $args->denied = 'N';
2101
		if(!$args->allow_message || ($args->allow_message && !in_array($args->allow_message, array('Y','N','F')))) $args->allow_message = 'Y';
2102
2103
		if($logged_info->is_admin == 'Y')
2104
		{
@@ 2288-2288 (lines=1) @@
2285
		if(!$this->memberInfo) $this->memberInfo = $oMemberModel->getMemberInfoByMemberSrl($args->member_srl);
2286
		// Control of essential parameters
2287
		if($args->allow_mailing!='Y') $args->allow_mailing = 'N';
2288
		if($args->allow_message && !in_array($args->allow_message, array('Y','N','F'))) $args->allow_message = 'Y';
2289
2290
		if($logged_info->is_admin == 'Y')
2291
		{