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

myth/Modules.php 1 location

@@ 464-467 (lines=4) @@
461
462
			if ( preg_match( '#^' . $key . '$#', $uri ) )
463
			{
464
				if ( strpos( $val, '$' ) !== FALSE AND strpos( $key, '(' ) !== FALSE )
465
				{
466
					$val = preg_replace( '#^' . $key . '$#', $val, $uri );
467
				}
468
469
				return explode( '/', $module . '/' . $val );
470
			}

system/core/Router.php 1 location

@@ 411-414 (lines=4) @@
408
					$val = call_user_func_array($val, $matches);
409
				}
410
				// Are we using the default routing method for back-references?
411
				elseif (strpos($val, '$') !== FALSE && strpos($key, '(') !== FALSE)
412
				{
413
					$val = preg_replace('#^'.$key.'$#', $val, $uri);
414
				}
415
416
				$this->_set_request(explode('/', $val));
417
				return;