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

@@ 2057-2066 (lines=10) @@
2054
		}
2055
		else
2056
		{
2057
			for($i=0;$i<count($group_srl_list);$i++)
2058
			{
2059
				$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2060
2061
				if(!$output->toBool())
2062
				{
2063
					$oDB->rollback();
2064
					return $output;
2065
				}
2066
			}
2067
		}
2068
2069
		$member_config = $oModuleModel->getModuleConfig('member');
@@ 2261-2269 (lines=9) @@
2258
					return $output;
2259
				}
2260
				// Enter one of the loop a
2261
				for($i=0;$i<count($group_srl_list);$i++)
2262
				{
2263
					$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2264
					if(!$output->toBool())
2265
					{
2266
						$oDB->rollback();
2267
						return $output;
2268
					}
2269
				}
2270
2271
				// if group is changed, point changed too.
2272
				$this->_updatePointByGroup($orgMemberInfo->member_srl, $group_srl_list);