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
@@ 536-550 (lines=15) @@
533
		}
534
535
		// default value
536
		if($args->skin == '/USE_DEFAULT/')
537
		{
538
			$args->is_skin_fix = 'N';
539
		}
540
		else
541
		{
542
			if(isset($args->is_skin_fix))
543
			{
544
				$args->is_skin_fix = ($args->is_skin_fix != 'Y') ? 'N' : 'Y';
545
			}
546
			else
547
			{
548
				$args->is_skin_fix = 'Y';
549
			}
550
		}
551
552
		if($args->mskin == '/USE_DEFAULT/')
553
		{
@@ 552-566 (lines=15) @@
549
			}
550
		}
551
552
		if($args->mskin == '/USE_DEFAULT/')
553
		{
554
			$args->is_mskin_fix = 'N';
555
		}
556
		else
557
		{
558
			if(isset($args->is_mskin_fix))
559
			{
560
				$args->is_mskin_fix = ($args->is_mskin_fix != 'Y') ? 'N' : 'Y';
561
			}
562
			else
563
			{
564
				$args->is_mskin_fix = 'Y';
565
			}
566
		}
567
		$output = executeQuery('module.updateModule', $args);
568
		if(!$output->toBool())
569
		{