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

@@ 445-451 (lines=7) @@
442
            $suffix = '.data';
443
        }
444
445
        if (!empty($prefix) || !empty($suffix)) {
446
            if (null !== $annotation->path) {
447
                return $prefix . $annotation->path . $suffix;
448
            }
449
450
            return $prefix . $property->name . $suffix;
451
        }
452
453
        return $annotation->path;
454
    }
@@ 474-480 (lines=7) @@
471
            $suffix = '.data';
472
        }
473
474
        if (!empty($prefix) || !empty($suffix)) {
475
            if (null !== $annotation->path) {
476
                return $prefix . $annotation->path . $suffix;
477
            }
478
479
            return $prefix . $annotation->name . $suffix;
480
        }
481
482
        return $annotation->path;
483
    }