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

@@ 645-656 (lines=12) @@
642
     * @param Url $url
643
     * @param AclInterface|null $addAces A list of ACEs
644
     */
645
    protected function appendAddAcesToUrl(Url $url, AclInterface $addAces = null)
646
    {
647
        if ($addAces !== null) {
648
            $url->getQuery()->modify(
649
                $this->convertAclToQueryArray(
650
                    $addAces,
651
                    Constants::CONTROL_ADD_ACE_PRINCIPAL,
652
                    Constants::CONTROL_ADD_ACE_PERMISSION
653
                )
654
            );
655
        }
656
    }
657
658
    /**
659
     * Appends removeAces parameters to url
@@ 664-675 (lines=12) @@
661
     * @param Url $url
662
     * @param AclInterface|null $removeAces A list of ACEs
663
     */
664
    protected function appendRemoveAcesToUrl(Url $url, AclInterface $removeAces = null)
665
    {
666
        if ($removeAces !== null) {
667
            $url->getQuery()->modify(
668
                $this->convertAclToQueryArray(
669
                    $removeAces,
670
                    Constants::CONTROL_REMOVE_ACE_PRINCIPAL,
671
                    Constants::CONTROL_REMOVE_ACE_PERMISSION
672
                )
673
            );
674
        }
675
    }
676
677
    /**
678
     * Gets the content link from the cache if it is there or loads it into the