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

Slim/Router.php 2 locations

@@ 139-141 (lines=3) @@
136
            throw new InvalidArgumentException('Router cache file must be a string or false');
137
        }
138
139
        if ($cacheFile && file_exists($cacheFile) && !$this->isCacheFileWritable($cacheFile)) {
140
            throw new RuntimeException(
141
                sprintf('Router cache file `%s` is not writable', $cacheFile)
142
            );
143
        }
144
@@ 145-147 (lines=3) @@
142
            );
143
        }
144
145
        if ($cacheFile && !file_exists($cacheFile) && !$this->isCacheFileWritable(dirname($cacheFile))) {
146
            throw new RuntimeException(
147
                sprintf('Router cache file directory `%s` is not writable', dirname($cacheFile))
148
            );
149
        }
150