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

install/Steps/CreateManifest.php 1 location

@@ 54-59 (lines=6) @@
51
                $name
52
            ));
53
54
            if (!General::realiseDirectory($dir, $config->get('write_mode', 'directory'))) {
55
                throw new Exception(sprintf(
56
                    'Could not create ā€˜%s’ directory. Check permission on the root folder.',
57
                    $name
58
                ));
59
            }
60
        }
61
62
        return true;

install/Steps/CreateWorkspace.php 1 location

@@ 37-42 (lines=6) @@
34
                $name
35
            ));
36
37
            if (!General::realiseDirectory($dir, $config->get('write_mode', 'directory'))) {
38
                throw new Exception(sprintf(
39
                    'Could not create ā€˜%s’ directory. Check permission on the root folder.',
40
                    $name
41
                ));
42
            }
43
        }
44
45
        return true;