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

system/libraries/Session/drivers/Session_memcached_driver.php 1 location

@@ 161-174 (lines=14) @@
158
	 * @param	string	$session_id	Session ID
159
	 * @return	string	Serialized session data
160
	 */
161
	public function read($session_id)
162
	{
163
		if (isset($this->_memcached) && $this->_get_lock($session_id))
164
		{
165
			// Needed by write() to detect session_regenerate_id() calls
166
			$this->_session_id = $session_id;
167
168
			$session_data = (string) $this->_memcached->get($this->_key_prefix.$session_id);
169
			$this->_fingerprint = md5($session_data);
170
			return $session_data;
171
		}
172
173
		return $this->_failure;
174
	}
175
176
	// ------------------------------------------------------------------------
177

system/libraries/Session/drivers/Session_redis_driver.php 1 location

@@ 162-175 (lines=14) @@
159
	 * @param	string	$session_id	Session ID
160
	 * @return	string	Serialized session data
161
	 */
162
	public function read($session_id)
163
	{
164
		if (isset($this->_redis) && $this->_get_lock($session_id))
165
		{
166
			// Needed by write() to detect session_regenerate_id() calls
167
			$this->_session_id = $session_id;
168
169
			$session_data = (string) $this->_redis->get($this->_key_prefix.$session_id);
170
			$this->_fingerprint = md5($session_data);
171
			return $session_data;
172
		}
173
174
		return $this->_failure;
175
	}
176
177
	// ------------------------------------------------------------------------
178