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

myth/Forensics/Profiler.php 1 location

@@ 97-101 (lines=5) @@
94
95
		// If the config file has a query_toggle_count,
96
		// use it, but remove it from the config array.
97
		if ( isset($config['query_toggle_count']) )
98
		{
99
			$this->_query_toggle_count = (int) $config['query_toggle_count'];
100
			unset($config['query_toggle_count']);
101
		}
102
103
		// default all sections to display
104
		foreach ($this->_available_sections as $section)

system/libraries/Profiler.php 1 location

@@ 128-132 (lines=5) @@
125
	 */
126
	public function set_sections($config)
127
	{
128
		if (isset($config['query_toggle_count']))
129
		{
130
			$this->_query_toggle_count = (int) $config['query_toggle_count'];
131
			unset($config['query_toggle_count']);
132
		}
133
134
		foreach ($config as $method => $enable)
135
		{