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

@@ 445-447 (lines=3) @@
442
            )
443
        );
444
445
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
446
            $url->getQuery()->modify(array(Constants::PARAM_CHANGE_TOKEN => $changeToken));
447
        }
448
449
        $responseData = $this->post($url)->json();
450
        $newObject = $this->getJsonConverter()->convertObject($responseData);
@@ 871-873 (lines=3) @@
868
            )
869
        );
870
871
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
872
            $url->getQuery()->modify(array(Constants::PARAM_CHANGE_TOKEN => $changeToken));
873
        }
874
875
        $responseData = $this->post(
876
            $url,
@@ 919-921 (lines=3) @@
916
917
        $url = $this->getObjectUrl($repositoryId, $objectId);
918
919
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
920
            $url->getQuery()->modify(array(Constants::PARAM_CHANGE_TOKEN => $changeToken));
921
        }
922
923
        $queryArray = $this->convertPropertiesToQueryArray($properties);
924
        $queryArray[Constants::CONTROL_CMISACTION] = Constants::CMISACTION_UPDATE_PROPERTIES;