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

src/Parser/Broker/Backend.php 2 locations

@@ 180-182 (lines=3) @@
177
        foreach ($reflectionRelatedClassElements as $parentName => $parentReflection) {
178
            /** @var TokenReflection\ReflectionClass $parentReflection */
179
            if ($parentReflection->isInternal()) {
180
                if (! isset($this->allClasses[self::INTERNAL_CLASSES][$parentName])) {
181
                    $this->allClasses[self::INTERNAL_CLASSES][$parentName] = $parentReflection;
182
                }
183
            } elseif (! $parentReflection->isTokenized()) {
184
                if (! isset($this->allClasses[self::NONEXISTENT_CLASSES][$parentName])) {
185
                    $this->allClasses[self::NONEXISTENT_CLASSES][$parentName] = $parentReflection;
@@ 183-187 (lines=5) @@
180
                if (! isset($this->allClasses[self::INTERNAL_CLASSES][$parentName])) {
181
                    $this->allClasses[self::INTERNAL_CLASSES][$parentName] = $parentReflection;
182
                }
183
            } elseif (! $parentReflection->isTokenized()) {
184
                if (! isset($this->allClasses[self::NONEXISTENT_CLASSES][$parentName])) {
185
                    $this->allClasses[self::NONEXISTENT_CLASSES][$parentName] = $parentReflection;
186
                }
187
            }
188
        }
189
    }
190