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

application/libraries/Migration.php 1 location

@@ 219-223 (lines=5) @@
216
217
        $migrations = $this->find_migrations($type);
218
219
        if ($target_version > 0 && ! isset($migrations[$target_version]))
220
        {
221
            $this->_error_string = sprintf($this->lang->line('migration_not_found'), $target_version);
222
            return FALSE;
223
        }
224
225
        if ($target_version > $current_version)
226
        {

system/libraries/Migration.php 1 location

@@ 212-216 (lines=5) @@
209
210
		$migrations = $this->find_migrations();
211
212
		if ($target_version > 0 && ! isset($migrations[$target_version]))
213
		{
214
			$this->_error_string = sprintf($this->lang->line('migration_not_found'), $target_version);
215
			return FALSE;
216
		}
217
218
		if ($target_version > $current_version)
219
		{