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');
@@ 2236-2244 (lines=9) @@
2233
					return $output;
2234
				}
2235
				// Enter one of the loop a
2236
				for($i=0;$i<count($group_srl_list);$i++)
2237
				{
2238
					$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2239
					if(!$output->toBool())
2240
					{
2241
						$oDB->rollback();
2242
						return $output;
2243
					}
2244
				}
2245
2246
				// if group is changed, point changed too.
2247
				$this->_updatePointByGroup($orgMemberInfo->member_srl, $group_srl_list);