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

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