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

@@ 425-427 (lines=3) @@
422
            )
423
        );
424
425
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
426
            $url->getQuery()->modify(array(Constants::PARAM_CHANGE_TOKEN => $changeToken));
427
        }
428
429
        $responseData = $this->post($url)->json();
430
        $newObject = $this->getJsonConverter()->convertObject($responseData);
@@ 851-853 (lines=3) @@
848
            )
849
        );
850
851
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
852
            $url->getQuery()->modify(array(Constants::PARAM_CHANGE_TOKEN => $changeToken));
853
        }
854
855
        $responseData = $this->post(
856
            $url,
@@ 899-901 (lines=3) @@
896
897
        $url = $this->getObjectUrl($repositoryId, $objectId);
898
899
        if ($changeToken !== null && !$this->getSession()->get(SessionParameter::OMIT_CHANGE_TOKENS, false)) {
900
            $url->getQuery()->modify(array(Constants::PARAM_CHANGE_TOKEN => $changeToken));
901
        }
902
903
        $queryArray = $this->convertPropertiesToQueryArray($properties);
904
        $queryArray[Constants::CONTROL_CMISACTION] = Constants::CMISACTION_UPDATE_PROPERTIES;