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

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