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

@@ 508-509 (lines=2) @@
505
        else if($derEvenOrOddCode === '02') // even
506
        {
507
            $resY = null;
508
            if(gmp_strval(gmp_mod($y[0], gmp_init(2, 10)), 10) === '0')
509
                $resY = gmp_strval($y[0], 16);
510
            if(gmp_strval(gmp_mod($y[1], gmp_init(2, 10)), 10) === '0')
511
                $resY = gmp_strval($y[1], 16);
512
            if($resY !== null)
@@ 510-511 (lines=2) @@
507
            $resY = null;
508
            if(gmp_strval(gmp_mod($y[0], gmp_init(2, 10)), 10) === '0')
509
                $resY = gmp_strval($y[0], 16);
510
            if(gmp_strval(gmp_mod($y[1], gmp_init(2, 10)), 10) === '0')
511
                $resY = gmp_strval($y[1], 16);
512
            if($resY !== null)
513
            {
514
                while(strlen($resY) < 64)
@@ 524-525 (lines=2) @@
521
        else if($derEvenOrOddCode === '03') // odd
522
        {
523
            $resY = null;
524
            if(gmp_strval(gmp_mod($y[0], gmp_init(2, 10)), 10) === '1')
525
                $resY = gmp_strval($y[0], 16);
526
            if(gmp_strval(gmp_mod($y[1], gmp_init(2, 10)), 10) === '1')
527
                $resY = gmp_strval($y[1], 16);
528
            if($resY !== null)
@@ 526-527 (lines=2) @@
523
            $resY = null;
524
            if(gmp_strval(gmp_mod($y[0], gmp_init(2, 10)), 10) === '1')
525
                $resY = gmp_strval($y[0], 16);
526
            if(gmp_strval(gmp_mod($y[1], gmp_init(2, 10)), 10) === '1')
527
                $resY = gmp_strval($y[1], 16);
528
            if($resY !== null)
529
            {
530
                while(strlen($resY) < 64)