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

@@ 330-336 (lines=7) @@
327
328
		// remove whitespace
329
		$checkInfos = array('user_id', 'user_name', 'nick_name', 'email_address');
330
		foreach($checkInfos as $val)
331
		{
332
			if(isset($args->{$val}))
333
			{
334
				$args->{$val} = preg_replace('/[\pZ\pC]+/u', '', $args->{$val});
335
			}
336
		}
337
		$output = $this->insertMember($args);
338
		if(!$output->toBool()) return $output;
339
@@ 542-548 (lines=7) @@
539
540
		// remove whitespace
541
		$checkInfos = array('user_id', 'user_name', 'nick_name', 'email_address');
542
		foreach($checkInfos as $val)
543
		{
544
			if(isset($args->{$val}))
545
			{
546
				$args->{$val} = preg_replace('/[\pZ\pC]+/u', '', $args->{$val});
547
			}
548
		}
549
550
		// Execute insert or update depending on the value of member_srl
551
		$output = $this->updateMember($args);