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

src/BitcoinPHP/BitcoinECDSA/BitcoinECDSA.php 2 locations

@@ 666-669 (lines=4) @@
663
            $pubKey['x'] = '0' . $pubKey['x'];
664
        }
665
666
        while(strlen($pubKey['y']) < 64)
667
        {
668
            $pubKey['y'] = '0' . $pubKey['y'];
669
        }
670
671
        return $pubKey;
672
    }
@@ 1149-1150 (lines=2) @@
1146
        while(strlen($pubKey['x']) < 64)
1147
            $pubKey['x'] = '0' . $pubKey['x'];
1148
1149
        while(strlen($pubKey['y']) < 64)
1150
            $pubKey['y'] = '0' . $pubKey['y'];
1151
1152
        $derPubKey = $this->getDerPubKeyWithPubKeyPoints($pubKey, $isCompressed);
1153