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

myth/Forensics/Profiler.php 1 location

@@ 131-137 (lines=7) @@
128
	 */
129
	public function set_sections($config)
130
	{
131
		foreach ($config as $method => $enable)
132
		{
133
			if (in_array($method, $this->_available_sections))
134
			{
135
				$this->_compile_{$method} = ($enable !== FALSE) ? TRUE : FALSE;
136
			}
137
		}
138
	}
139
140
	// --------------------------------------------------------------------

system/libraries/Profiler.php 1 location

@@ 134-140 (lines=7) @@
131
			unset($config['query_toggle_count']);
132
		}
133
134
		foreach ($config as $method => $enable)
135
		{
136
			if (in_array($method, $this->_available_sections))
137
			{
138
				$this->_compile_{$method} = ($enable !== FALSE);
139
			}
140
		}
141
	}
142
143
	// --------------------------------------------------------------------