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 = 5-6 lines in 5 locations

modules/install/install.controller.php 3 locations

@@ 110-115 (lines=6) @@
107
		// Create a db temp config file
108
		if(!$this->makeDBConfigFile()) return new Object(-1, 'msg_install_failed');
109
110
		if(!in_array(Context::getRequestMethod(),array('XMLRPC','JSON')))
111
		{
112
			$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'act', 'dispInstallConfigForm');
113
			header('location:'.$returnUrl);
114
			return;
115
		}
116
	}
117
118
	/**
@@ 130-135 (lines=6) @@
127
		// Create a db temp config file
128
		if(!$this->makeEtcConfigFile($config_info)) return new Object(-1, 'msg_install_failed');
129
130
		if(!in_array(Context::getRequestMethod(),array('XMLRPC','JSON')))
131
		{
132
			$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'act', 'dispInstallManagerForm');
133
			header('location:'.$returnUrl);
134
			return;
135
		}
136
	}
137
138
	/**
@@ 204-209 (lines=6) @@
201
202
		unset($_SESSION['use_rewrite']);
203
204
		if(!in_array(Context::getRequestMethod(),array('XMLRPC','JSON')))
205
		{
206
			$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('');
207
			header('location:'.$returnUrl);
208
			return new Object();
209
		}
210
	}
211
212
	/**

modules/member/member.controller.php 1 location

@@ 1037-1041 (lines=5) @@
1034
		$oMail->send();
1035
		// Return message
1036
		$msg = sprintf(Context::getLang('msg_auth_mail_sent'), $member_info->email_address);
1037
		if(!in_array(Context::getRequestMethod(),array('XMLRPC','JSON')))
1038
		{
1039
			$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'mid', Context::get('mid'), 'act', 'dispMemberFindAccount');
1040
			$this->setRedirectUrl($returnUrl);
1041
		}
1042
		return new Object(0,$msg);
1043
	}
1044

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

@@ 157-162 (lines=6) @@
154
		}
155
156
		$this->setMessage('success_updated');
157
		if(!in_array(Context::getRequestMethod(),array('XMLRPC','JSON')))
158
		{
159
			$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispPointAdminModuleConfig');
160
			header('location:'.$returnUrl);
161
			return;
162
		}
163
	}
164
165
	/**