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

src/Decoders/Mapping/Loader/AnnotationLoader.php 2 locations

@@ 440-446 (lines=7) @@
437
            $suffix = '.data';
438
        }
439
440
        if (!empty($prefix) || !empty($suffix)) {
441
            if (null !== $annotation->path) {
442
                return $prefix . $annotation->path . $suffix;
443
            }
444
445
            return $prefix . $property->name . $suffix;
446
        }
447
448
        return $annotation->path;
449
    }
@@ 469-475 (lines=7) @@
466
            $suffix = '.data';
467
        }
468
469
        if (!empty($prefix) || !empty($suffix)) {
470
            if (null !== $annotation->path) {
471
                return $prefix . $annotation->path . $suffix;
472
            }
473
474
            return $prefix . $annotation->name . $suffix;
475
        }
476
477
        return $annotation->path;
478
    }