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

src/Console/Commands/SectionProvider.php 2 locations

@@ 28-38 (lines=11) @@
25
    /**
26
     * @param Repository $files
27
     */
28
    public function fire(Repository $files)
29
    {
30
        $installer = new CreateSectionServiceProvider($this, $files);
31
        if ($installer->installed()) {
32
            $this->line('File <info>AdminSectionsServiceProvider</info> exists');
33
34
            return;
35
        }
36
37
        $installer->install();
38
    }
39
40
    /**
41
     * @param Repository $files
@@ 43-53 (lines=11) @@
40
    /**
41
     * @param Repository $files
42
     */
43
    public function handle(Repository $files)
44
    {
45
        $installer = new CreateSectionServiceProvider($this, $files);
46
        if ($installer->installed()) {
47
            $this->line('File <info>AdminSectionsServiceProvider</info> exists');
48
49
            return;
50
        }
51
52
        $installer->install();
53
    }
54
}
55