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

myth/Modules.php 2 locations

@@ 495-500 (lines=6) @@
492
		}
493
494
		/* autoload core classes */
495
		if ( is_file( $location = APPPATH . 'core/' . $class . '.php' ) )
496
		{
497
			include_once $location;
498
499
			return;
500
		}
501
502
		/* autoload library classes */
503
		if ( is_file( $location = APPPATH . 'libraries/' . $class . '.php' ) )
@@ 503-508 (lines=6) @@
500
		}
501
502
		/* autoload library classes */
503
		if ( is_file( $location = APPPATH . 'libraries/' . $class . '.php' ) )
504
		{
505
			include_once $location;
506
507
			return;
508
		}
509
	}
510
511
	//--------------------------------------------------------------------