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

@@ 2126-2126 (lines=1) @@
2123
		// Control of essential parameters
2124
		if($args->allow_mailing!='Y') $args->allow_mailing = 'N';
2125
		if($args->denied!='Y') $args->denied = 'N';
2126
		if(!$args->allow_message || ($args->allow_message && !in_array($args->allow_message, array('Y','N','F')))) $args->allow_message = 'Y';
2127
2128
		if($logged_info->is_admin == 'Y')
2129
		{
@@ 2313-2313 (lines=1) @@
2310
		if(!$this->memberInfo) $this->memberInfo = $oMemberModel->getMemberInfoByMemberSrl($args->member_srl);
2311
		// Control of essential parameters
2312
		if($args->allow_mailing!='Y') $args->allow_mailing = 'N';
2313
		if($args->allow_message && !in_array($args->allow_message, array('Y','N','F'))) $args->allow_message = 'Y';
2314
2315
		if($logged_info->is_admin == 'Y')
2316
		{