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

src/Bindings/Browser/ObjectService.php 3 locations

@@ 449-451 (lines=3) @@
446
            ]
447
        );
448
449
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
450
            $url->getQuery()->modify([Constants::PARAM_CHANGE_TOKEN => $changeToken]);
451
        }
452
453
        $newObject = $this->getJsonConverter()->convertObject((array) $this->postJson($url));
454
@@ 933-935 (lines=3) @@
930
            ]
931
        );
932
933
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
934
            $url->getQuery()->modify([Constants::PARAM_CHANGE_TOKEN => $changeToken]);
935
        }
936
937
        $newObject = $this->getJsonConverter()->convertObject(
938
            (array) $this->postJson($url, ['content' => $contentStream])
@@ 980-982 (lines=3) @@
977
978
        $url = $this->getObjectUrl($repositoryId, $objectId);
979
980
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
981
            $url->getQuery()->modify([Constants::PARAM_CHANGE_TOKEN => $changeToken]);
982
        }
983
984
        $queryArray = $this->convertPropertiesToQueryArray($properties);
985
        $queryArray[Constants::CONTROL_CMISACTION] = Constants::CMISACTION_UPDATE_PROPERTIES;