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

@@ 2035-2044 (lines=10) @@
2032
		}
2033
		else
2034
		{
2035
			for($i=0;$i<count($group_srl_list);$i++)
2036
			{
2037
				$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2038
2039
				if(!$output->toBool())
2040
				{
2041
					$oDB->rollback();
2042
					return $output;
2043
				}
2044
			}
2045
		}
2046
2047
		$member_config = $oModuleModel->getModuleConfig('member');
@@ 2239-2247 (lines=9) @@
2236
					return $output;
2237
				}
2238
				// Enter one of the loop a
2239
				for($i=0;$i<count($group_srl_list);$i++)
2240
				{
2241
					$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2242
					if(!$output->toBool())
2243
					{
2244
						$oDB->rollback();
2245
						return $output;
2246
					}
2247
				}
2248
2249
				// if group is changed, point changed too.
2250
				$this->_updatePointByGroup($orgMemberInfo->member_srl, $group_srl_list);