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

src/Bindings/Browser/AbstractBrowserBindingService.php 2 locations

@@ 661-672 (lines=12) @@
658
     * @param Url $url
659
     * @param AclInterface|null $addAces A list of ACEs
660
     */
661
    protected function appendAddAcesToUrl(Url $url, AclInterface $addAces = null)
662
    {
663
        if ($addAces !== null) {
664
            $url->getQuery()->modify(
665
                $this->convertAclToQueryArray(
666
                    $addAces,
667
                    Constants::CONTROL_ADD_ACE_PRINCIPAL,
668
                    Constants::CONTROL_ADD_ACE_PERMISSION
669
                )
670
            );
671
        }
672
    }
673
674
    /**
675
     * Appends removeAces parameters to url
@@ 680-691 (lines=12) @@
677
     * @param Url $url
678
     * @param AclInterface|null $removeAces A list of ACEs
679
     */
680
    protected function appendRemoveAcesToUrl(Url $url, AclInterface $removeAces = null)
681
    {
682
        if ($removeAces !== null) {
683
            $url->getQuery()->modify(
684
                $this->convertAclToQueryArray(
685
                    $removeAces,
686
                    Constants::CONTROL_REMOVE_ACE_PRINCIPAL,
687
                    Constants::CONTROL_REMOVE_ACE_PERMISSION
688
                )
689
            );
690
        }
691
    }
692
693
    /**
694
     * Gets the content link from the cache if it is there or loads it into the