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 = 15-15 lines in 4 locations

modules/module/module.controller.php 4 locations

@@ 410-424 (lines=15) @@
407
		if(!$args->module_srl) $args->module_srl = getNextSequence();
408
409
		// default value
410
		if($args->skin == '/USE_DEFAULT/')
411
		{
412
			$args->is_skin_fix = 'N';
413
		}
414
		else
415
		{
416
			if(isset($args->is_skin_fix))
417
			{
418
				$args->is_skin_fix = ($args->is_skin_fix != 'Y') ? 'N' : 'Y';
419
			}
420
			else
421
			{
422
				$args->is_skin_fix = 'Y';
423
			}
424
		}
425
426
		if($args->mskin == '/USE_DEFAULT/')
427
		{
@@ 426-440 (lines=15) @@
423
			}
424
		}
425
426
		if($args->mskin == '/USE_DEFAULT/')
427
		{
428
			$args->is_mskin_fix = 'N';
429
		}
430
		else
431
		{
432
			if(isset($args->is_mskin_fix))
433
			{
434
				$args->is_mskin_fix = ($args->is_mskin_fix != 'Y') ? 'N' : 'Y';
435
			}
436
			else
437
			{
438
				$args->is_mskin_fix = 'Y';
439
			}
440
		}
441
442
		unset($output);
443
@@ 545-559 (lines=15) @@
542
		}
543
544
		// default value
545
		if($args->skin == '/USE_DEFAULT/')
546
		{
547
			$args->is_skin_fix = 'N';
548
		}
549
		else
550
		{
551
			if(isset($args->is_skin_fix))
552
			{
553
				$args->is_skin_fix = ($args->is_skin_fix != 'Y') ? 'N' : 'Y';
554
			}
555
			else
556
			{
557
				$args->is_skin_fix = 'Y';
558
			}
559
		}
560
561
		if($args->mskin == '/USE_DEFAULT/')
562
		{
@@ 561-575 (lines=15) @@
558
			}
559
		}
560
561
		if($args->mskin == '/USE_DEFAULT/')
562
		{
563
			$args->is_mskin_fix = 'N';
564
		}
565
		else
566
		{
567
			if(isset($args->is_mskin_fix))
568
			{
569
				$args->is_mskin_fix = ($args->is_mskin_fix != 'Y') ? 'N' : 'Y';
570
			}
571
			else
572
			{
573
				$args->is_mskin_fix = 'Y';
574
			}
575
		}
576
		$output = executeQuery('module.updateModule', $args);
577
		if(!$output->toBool())
578
		{