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

myth/Forge/BaseGenerator.php 2 locations

@@ 153-160 (lines=8) @@
150
151
        chmod($path, $perms);
152
153
	    if ($overwrite && $file_exists)
154
	    {
155
		    CLI::write( CLI::color("\t". strtolower( lang('overwrote') ) ." ", 'light_red') . str_replace(APPPATH, '', $path ) );
156
	    }
157
	    else
158
	    {
159
		    CLI::write( CLI::color("\t". strtolower( lang('created') ) ." ", 'yellow') . str_replace(APPPATH, '', $path ) );
160
	    }
161
162
        return $this;
163
    }
@@ 300-307 (lines=8) @@
297
                break;
298
        }
299
300
        if ($success)
301
        {
302
            CLI::write( CLI::color("\t". strtolower( lang('modified') ) ." ", 'cyan') . str_replace(APPPATH, '', $path ) );
303
        }
304
        else
305
        {
306
            CLI::write( CLI::color("\t". strtolower( lang('error') ) ." ", 'light_red') . str_replace(APPPATH, '', $path ) );
307
        }
308
309
        return $this;
310
    }