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

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

@@ 88-92 (lines=5) @@
85
					continue;
86
				}
87
				// Ignore if the file is not successfully uploaded, and check uploaded file
88
				if(!is_uploaded_file($image_obj['tmp_name']) || !checkUploadedFile($image_obj['tmp_name']))
89
				{
90
					unset($obj->{$vars->name});
91
					continue;
92
				}
93
				// Ignore if the file is not an image
94
				if(!preg_match("/\.(jpg|jpeg|gif|png)$/i", $image_obj['name']))
95
				{

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

@@ 442-446 (lines=5) @@
439
						continue;
440
					}
441
					// Ignore if the file is not successfully uploaded
442
					if(!is_uploaded_file($image_obj['tmp_name']) || !checkUploadedFile($image_obj['tmp_name']))
443
					{
444
						unset($obj->{$vars->name});
445
						continue;
446
					}
447
					// Ignore if the file is not an image
448
					if(!preg_match("/\.(jpg|jpeg|gif|png)$/i", $image_obj['name']))
449
					{