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

@@ 702-713 (lines=12) @@
699
     * @param Url $url
700
     * @param AclInterface|null $addAces A list of ACEs
701
     */
702
    protected function appendAddAcesToUrl(Url $url, AclInterface $addAces = null)
703
    {
704
        if ($addAces !== null) {
705
            $url->getQuery()->modify(
706
                $this->convertAclToQueryArray(
707
                    $addAces,
708
                    Constants::CONTROL_ADD_ACE_PRINCIPAL,
709
                    Constants::CONTROL_ADD_ACE_PERMISSION
710
                )
711
            );
712
        }
713
    }
714
715
    /**
716
     * Appends removeAces parameters to url
@@ 721-732 (lines=12) @@
718
     * @param Url $url
719
     * @param AclInterface|null $removeAces A list of ACEs
720
     */
721
    protected function appendRemoveAcesToUrl(Url $url, AclInterface $removeAces = null)
722
    {
723
        if ($removeAces !== null) {
724
            $url->getQuery()->modify(
725
                $this->convertAclToQueryArray(
726
                    $removeAces,
727
                    Constants::CONTROL_REMOVE_ACE_PRINCIPAL,
728
                    Constants::CONTROL_REMOVE_ACE_PERMISSION
729
                )
730
            );
731
        }
732
    }
733
734
    /**
735
     * Gets the content link from the cache if it is there or loads it into the