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

@@ 449-455 (lines=7) @@
446
            $suffix = '.data';
447
        }
448
449
        if (!empty($prefix) || !empty($suffix)) {
450
            if (null !== $annotation->path) {
451
                return $prefix . $annotation->path . $suffix;
452
            }
453
454
            return $prefix . $property->name . $suffix;
455
        }
456
457
        return $annotation->path;
458
    }
@@ 478-484 (lines=7) @@
475
            $suffix = '.data';
476
        }
477
478
        if (!empty($prefix) || !empty($suffix)) {
479
            if (null !== $annotation->path) {
480
                return $prefix . $annotation->path . $suffix;
481
            }
482
483
            return $prefix . $annotation->name . $suffix;
484
        }
485
486
        return $annotation->path;
487
    }