bitpay/php-bitpay-client

View on GitHub
src/Bitpay/Util/Util.php

Summary

Maintainability
C
1 day
Test Coverage

File Util.php has 275 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * @license Copyright 2011-2014 BitPay Inc., MIT License
 * see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
 */
Severity: Minor
Found in src/Bitpay/Util/Util.php - About 2 hrs to fix

    Method pointAdd has 54 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public static function pointAdd(PointInterface $P, PointInterface $Q)
        {
            if ($P->isInfinity()) {
                return $Q;
            }
    Severity: Major
    Found in src/Bitpay/Util/Util.php - About 2 hrs to fix

      Function checkRequirements has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function checkRequirements()
          {
              $requirements = array();
      
              // PHP Version
      Severity: Minor
      Found in src/Bitpay/Util/Util.php - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method checkRequirements has 38 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function checkRequirements()
          {
              $requirements = array();
      
              // PHP Version
      Severity: Minor
      Found in src/Bitpay/Util/Util.php - About 1 hr to fix

        Method pointDouble has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static function pointDouble(PointInterface $point, CurveParameterInterface $parameters = null)
            {
                if ($point->isInfinity()) {
                    return $point;
                }
        Severity: Minor
        Found in src/Bitpay/Util/Util.php - About 1 hr to fix

          Function decToBin has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function decToBin($dec)
              {
                  if (substr(strtolower($dec), 0, 2) == '0x') {
                      $dec = self::decodeHex(substr($dec, 2));
                  }
          Severity: Minor
          Found in src/Bitpay/Util/Util.php - About 35 mins to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          There are no issues that match your filters.

          Category
          Status