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

modules/member/member.controller.php 2 locations

@@ 2245-2254 (lines=10) @@
2242
		}
2243
		else
2244
		{
2245
			for($i=0;$i<count($group_srl_list);$i++)
2246
			{
2247
				$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2248
2249
				if(!$output->toBool())
2250
				{
2251
					$oDB->rollback();
2252
					return $output;
2253
				}
2254
			}
2255
		}
2256
2257
		$member_config = $oModuleModel->getModuleConfig('member');
@@ 2464-2472 (lines=9) @@
2461
					return $output;
2462
				}
2463
				// Enter one of the loop a
2464
				for($i=0;$i<count($group_srl_list);$i++)
2465
				{
2466
					$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2467
					if(!$output->toBool())
2468
					{
2469
						$oDB->rollback();
2470
						return $output;
2471
					}
2472
				}
2473
2474
				// if group is changed, point changed too.
2475
				$this->_updatePointByGroup($orgMemberInfo->member_srl, $group_srl_list);