j84reginato/my-eval

View on GitHub
src/Solving/RationalEvaluator.php

Summary

Maintainability
D
1 day
Test Coverage

File RationalEvaluator.php has 278 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

declare(strict_types=1);

namespace MyEval\Solving;
Severity: Minor
Found in src/Solving/RationalEvaluator.php - About 2 hrs to fix

    Method visitFunctionNode has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function visitFunctionNode(FunctionNode $node): RationalNode
        {
            if ($node->operand === null) {
                throw new NullOperandException();
            }
    Severity: Minor
    Found in src/Solving/RationalEvaluator.php - About 1 hr to fix

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

          public static function ifactor($n): array
          {
      
              // max_n = 2^31-1 = 2147483647
              $d       = 2;
      Severity: Minor
      Found in src/Solving/RationalEvaluator.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 visitInfixExpressionNode has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function visitInfixExpressionNode(InfixExpressionNode $node)
          {
              $left     = $node->getLeft();
              $operator = $node->operator;
              $right    = $node->getRight();
      Severity: Minor
      Found in src/Solving/RationalEvaluator.php - About 1 hr to fix

        Method ifactor has 35 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static function ifactor($n): array
            {
        
                // max_n = 2^31-1 = 2147483647
                $d       = 2;
        Severity: Minor
        Found in src/Solving/RationalEvaluator.php - About 1 hr to fix

          Method rpow has 28 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private function rpow($a, $b)
              {
                  if ($b->getDenominator() === 1) {
                      $n = $b->getNumerator();
                      if ($n >= 0) {
          Severity: Minor
          Found in src/Solving/RationalEvaluator.php - About 1 hr to fix

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

                private function rpow($a, $b)
                {
                    if ($b->getDenominator() === 1) {
                        $n = $b->getNumerator();
                        if ($n >= 0) {
            Severity: Minor
            Found in src/Solving/RationalEvaluator.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

            Avoid too many return statements within this method.
            Open

                            return $this->rpow($a, $b);
            Severity: Major
            Found in src/Solving/RationalEvaluator.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return new RationalNode($p, $q);
              Severity: Major
              Found in src/Solving/RationalEvaluator.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                    return new RationalNode(Math::semiFactorial($inner->getNumerator()), 1);
                Severity: Major
                Found in src/Solving/RationalEvaluator.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                      return new RationalNode(Math::factorial($inner->getNumerator()), 1);
                  Severity: Major
                  Found in src/Solving/RationalEvaluator.php - About 30 mins to fix

                    Function visitInfixExpressionNode has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public function visitInfixExpressionNode(InfixExpressionNode $node)
                        {
                            $left     = $node->getLeft();
                            $operator = $node->operator;
                            $right    = $node->getRight();
                    Severity: Minor
                    Found in src/Solving/RationalEvaluator.php - About 25 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

                    Function visitFunctionNode has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public function visitFunctionNode(FunctionNode $node): RationalNode
                        {
                            if ($node->operand === null) {
                                throw new NullOperandException();
                            }
                    Severity: Minor
                    Found in src/Solving/RationalEvaluator.php - About 25 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