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

src/Decoders/DataParser.php 2 locations

@@ 902-907 (lines=6) @@
899
            $resId = $this->getValue($data, $relationship->getDataPath() . '.id');
900
        }
901
902
        if ((null !== $resId) &&
903
            (null !== $resType) &&
904
            (null !== ($res = $this->context->getResource($resType, $resId)))
905
        ) {
906
            return $this->setProperty($pathValue, $res, $relationship);
907
        }
908
909
910
        if (null !== ($linkedData = $this->context->getLinkedData($resType, $resId))) {
@@ 947-952 (lines=6) @@
944
                $resId = $this->getValue($data, $path . '.id');
945
            }
946
947
            if ((null !== $resType) &&
948
                (null !== $resId) &&
949
                (null !== ($parsed = $this->context->getResource($resType, $resId)))
950
            ) {
951
                return $parsed;
952
            }
953
954
            $params = $relationship->getDataTypeParams();
955