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

classes/db/queryparts/Query.class.php 2 locations

@@ 221-233 (lines=13) @@
218
		}
219
	}
220
221
	function setGroups($groups)
222
	{
223
		if(!isset($groups) || (is_array($groups) && count($groups) === 0))
224
		{
225
			return;
226
		}
227
		if(!is_array($groups))
228
		{
229
			$groups = array($groups);
230
		}
231
232
		$this->groups = $groups;
233
	}
234
235
	function setOrder($order)
236
	{
@@ 235-247 (lines=13) @@
232
		$this->groups = $groups;
233
	}
234
235
	function setOrder($order)
236
	{
237
		if(!isset($order) || (is_array($order) && count($order) === 0))
238
		{
239
			return;
240
		}
241
		if(!is_array($order))
242
		{
243
			$order = array($order);
244
		}
245
246
		$this->orderby = $order;
247
	}
248
249
	function getOrder()
250
	{