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

modules/member/member.admin.controller.php 1 location

@@ 84-90 (lines=7) @@
81
82
		// remove whitespace
83
		$checkInfos = array('user_id', 'user_name', 'nick_name', 'email_address');
84
		foreach($checkInfos as $val)
85
		{
86
			if(isset($args->{$val}))
87
			{
88
				$args->{$val} = preg_replace('/[\pZ\pC]+/u', '', $args->{$val});
89
			}
90
		}
91
92
		$oMemberController = getController('member');
93
		// Execute insert or update depending on the value of member_srl

modules/member/member.controller.php 2 locations

@@ 343-349 (lines=7) @@
340
341
		// remove whitespace
342
		$checkInfos = array('user_id', 'user_name', 'nick_name', 'email_address');
343
		foreach($checkInfos as $val)
344
		{
345
			if(isset($args->{$val}))
346
			{
347
				$args->{$val} = preg_replace('/[\pZ\pC]+/u', '', $args->{$val});
348
			}
349
		}
350
		$output = $this->insertMember($args);
351
		if(!$output->toBool()) return $output;
352
@@ 555-561 (lines=7) @@
552
553
		// remove whitespace
554
		$checkInfos = array('user_id', 'user_name', 'nick_name', 'email_address');
555
		foreach($checkInfos as $val)
556
		{
557
			if(isset($args->{$val}))
558
			{
559
				$args->{$val} = preg_replace('/[\pZ\pC]+/u', '', $args->{$val});
560
			}
561
		}
562
563
		// Execute insert or update depending on the value of member_srl
564
		$output = $this->updateMember($args);