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

src/Kunstmaan/Skylab/Skeleton/WebserverSkeleton.php 1 location

@@ 60-64 (lines=5) @@
57
            }
58
        }
59
60
        if (PHP_OS == "Darwin") {
61
            $this->processProvider->executeSudoCommand('find ' . $this->fileSystemProvider->getProjectDirectory($project["name"]) . '/data/current -type d -name .git -exec cd {} "\;" -exec git config core.filemode false "\;"');
62
        } else {
63
            $this->processProvider->executeSudoCommand('find ' . $this->fileSystemProvider->getProjectDirectory($project["name"]) . '/data/current -type d -name .git -exec cd {} \; -exec git config core.filemode false \;');
64
        }
65
66
        $this->dialogProvider->logConfig("Updating aliases webserver config file");
67
        $this->generateBasicAliases($project, $aliases);

src/Kunstmaan/Skylab/Provider/PermissionsProvider.php 1 location

@@ 155-159 (lines=5) @@
152
                }
153
            }
154
        }
155
        if (PHP_OS == "Darwin") {
156
            $this->processProvider->executeSudoCommand('find ' . $this->fileSystemProvider->getProjectDirectory($project["name"]) . '/ -type d -exec chmod o+rx {} "\;"');
157
        } else {
158
            $this->processProvider->executeSudoCommand('find ' . $this->fileSystemProvider->getProjectDirectory($project["name"]) . '/ -type d -exec chmod o+rx {} \;');
159
        }
160
    }
161
162
    /**