mossadal/math-parser

View on GitHub

Showing 178 of 188 total issues

Avoid too many return statements within this method.
Open

                return new FunctionNode($token->getValue(), null);
Severity: Major
Found in src/MathParser/Parsing/Nodes/Node.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                    return new ExpressionNode(null, $token->getValue(), null);
    Severity: Major
    Found in src/MathParser/Parsing/Nodes/Node.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

              return false;
      Severity: Major
      Found in src/MathParser/Parsing/Nodes/ExpressionNode.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                    return new NumberNode($leftOperand->getValue() * $rightOperand->getValue());
        Severity: Major
        Found in src/MathParser/Parsing/Nodes/Factories/MultiplicationNodeFactory.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/MathParser/Parsing/Nodes/Factories/MultiplicationNodeFactory.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                            return new SubExpressionNode($token->getValue());
            Severity: Major
            Found in src/MathParser/Parsing/Nodes/Node.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return new PostfixOperatorNode($token->getValue());
              Severity: Major
              Found in src/MathParser/Parsing/Nodes/Node.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                return null;
                Severity: Major
                Found in src/MathParser/Parsing/Nodes/Node.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                      return 3 + $left->complexity() + (($right === null) ? 0 : $right->complexity());
                  Severity: Major
                  Found in src/MathParser/Parsing/Nodes/Node.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                return $otherRight=== null && $thisLeft->compareTo($otherLeft);
                    Severity: Major
                    Found in src/MathParser/Parsing/Nodes/ExpressionNode.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                      return new SubExpressionNode($token->getValue());
                      Severity: Major
                      Found in src/MathParser/Parsing/Nodes/Node.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                    return true;
                        Severity: Major
                        Found in src/MathParser/Parsing/Nodes/Node.php - About 30 mins to fix

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

                              private function visitFactorialNode(FunctionNode $node)
                              {
                                  $functionName = $node->getName();
                                  $op = $node->getOperand();
                                  $operand = $op->accept($this);
                          Severity: Minor
                          Found in src/MathParser/Interpreting/LaTeXPrinter.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 handleSubExpression has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                              protected function handleSubExpression()
                              {
                                  // Flag, checking for mismatching parentheses
                                  $clean = false;
                          
                          
                          Severity: Minor
                          Found in src/MathParser/Parsing/Parser.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 visitExpressionNode has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                              public function visitExpressionNode(ExpressionNode $node)
                              {
                                  $operator = $node->getOperator();
                          
                                  $leftValue = $node->getLeft()->accept($this);
                          Severity: Minor
                          Found in src/MathParser/Interpreting/Evaluator.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)
                              {
                                  $inner = $node->getOperand()->accept($this);
                          
                                  switch ($node->getName()) {
                          Severity: Minor
                          Found in src/MathParser/Interpreting/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 powi has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private static function powi($z, $n) {
                                  if ($n < 0) return static::div(1,static::powi($z, -$n));
                          
                                  if ($n == 0) return new Complex(1,0);
                          
                          
                          Severity: Minor
                          Found in src/MathParser/Extensions/Complex.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 compareTo has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                              public function compareTo($other)
                              {
                                  if ($other === null) {
                                      return false;
                                  }
                          Severity: Minor
                          Found in src/MathParser/Parsing/Nodes/ExpressionNode.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

                          Severity
                          Category
                          Status
                          Source
                          Language