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

src/BitcoinPHP/BitcoinECDSA/BitcoinECDSA.php 4 locations

@@ 520-521 (lines=2) @@
517
        else if($derEvenOrOddCode === '02') // even
518
        {
519
            $resY = null;
520
            if(gmp_strval(gmp_mod($y[0], gmp_init(2, 10)), 10) === '0')
521
                $resY = gmp_strval($y[0], 16);
522
            if(gmp_strval(gmp_mod($y[1], gmp_init(2, 10)), 10) === '0')
523
                $resY = gmp_strval($y[1], 16);
524
            if($resY !== null)
@@ 522-523 (lines=2) @@
519
            $resY = null;
520
            if(gmp_strval(gmp_mod($y[0], gmp_init(2, 10)), 10) === '0')
521
                $resY = gmp_strval($y[0], 16);
522
            if(gmp_strval(gmp_mod($y[1], gmp_init(2, 10)), 10) === '0')
523
                $resY = gmp_strval($y[1], 16);
524
            if($resY !== null)
525
            {
526
                while(strlen($resY) < 64)
@@ 536-537 (lines=2) @@
533
        else if($derEvenOrOddCode === '03') // odd
534
        {
535
            $resY = null;
536
            if(gmp_strval(gmp_mod($y[0], gmp_init(2, 10)), 10) === '1')
537
                $resY = gmp_strval($y[0], 16);
538
            if(gmp_strval(gmp_mod($y[1], gmp_init(2, 10)), 10) === '1')
539
                $resY = gmp_strval($y[1], 16);
540
            if($resY !== null)
@@ 538-539 (lines=2) @@
535
            $resY = null;
536
            if(gmp_strval(gmp_mod($y[0], gmp_init(2, 10)), 10) === '1')
537
                $resY = gmp_strval($y[0], 16);
538
            if(gmp_strval(gmp_mod($y[1], gmp_init(2, 10)), 10) === '1')
539
                $resY = gmp_strval($y[1], 16);
540
            if($resY !== null)
541
            {
542
                while(strlen($resY) < 64)