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

modules/member/member.model.php 1 location

@@ 858-869 (lines=12) @@
855
	/**
856
	 * @brief Verify if nick name is denied
857
	 */
858
	function isDeniedNickName($nickName)
859
	{
860
		$args = new stdClass();
861
		$args->nick_name = $nickName;
862
		$output = executeQuery('member.chkDeniedNickName', $args);
863
		if($output->data->count) return true;
864
		if(!$output->toBool())
865
		{
866
			return true;
867
		}
868
		return false;
869
	}
870
	/**
871
	 * @brief Get information of the profile image
872
	 */

modules/trash/trash.admin.controller.php 1 location

@@ 219-228 (lines=10) @@
216
	 * @param array trashSrls
217
	 * @return bool
218
	 */
219
	function _emptyTrash($trashSrls)
220
	{
221
		if(!is_array($trashSrls)) return false;
222
		$args = new stdClass();
223
		$args->trashSrls = $trashSrls;
224
		$output = executeQuery('trash.deleteTrash', $args);
225
		if(!$output->toBool()) return false;
226
227
		return true;
228
	}
229
}
230
/* End of file trash.admin.controller.php */
231
/* Location: ./modules/trash/trash.admin.controller.php */