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

@@ 2048-2057 (lines=10) @@
2045
		}
2046
		else
2047
		{
2048
			for($i=0;$i<count($group_srl_list);$i++)
2049
			{
2050
				$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2051
2052
				if(!$output->toBool())
2053
				{
2054
					$oDB->rollback();
2055
					return $output;
2056
				}
2057
			}
2058
		}
2059
2060
		$member_config = $oModuleModel->getModuleConfig('member');
@@ 2252-2260 (lines=9) @@
2249
					return $output;
2250
				}
2251
				// Enter one of the loop a
2252
				for($i=0;$i<count($group_srl_list);$i++)
2253
				{
2254
					$output = $this->addMemberToGroup($args->member_srl,$group_srl_list[$i]);
2255
					if(!$output->toBool())
2256
					{
2257
						$oDB->rollback();
2258
						return $output;
2259
					}
2260
				}
2261
2262
				// if group is changed, point changed too.
2263
				$this->_updatePointByGroup($orgMemberInfo->member_srl, $group_srl_list);