HuasoFoundries/jpgraph

View on GitHub
src/plot/LinePlot.php

Summary

Maintainability
F
4 days
Test Coverage

Function Stroke has a Cognitive Complexity of 113 (exceeds 5 allowed). Consider refactoring.
Open

    public function Stroke($img, $xscale, $yscale)
    {
        $idx       = 0;
        $numpoints = safe_count($this->coords[0]);
        if (isset($this->coords[1])) {
Severity: Minor
Found in src/plot/LinePlot.php - About 2 days 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 Stroke has 224 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function Stroke($img, $xscale, $yscale)
    {
        $idx       = 0;
        $numpoints = safe_count($this->coords[0]);
        if (isset($this->coords[1])) {
Severity: Major
Found in src/plot/LinePlot.php - About 1 day to fix

    File LinePlot.php has 395 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /**
     * JPGraph v4.0.3
     */
    Severity: Minor
    Found in src/plot/LinePlot.php - About 5 hrs to fix

      The class LinePlot has an overall complexity of 89 which is very high. The configured complexity threshold is 50.
      Open

      class LinePlot extends Plot
      {
          public $mark;
          protected $filled             = false;
          protected $fill_color         = 'blue';
      Severity: Minor
      Found in src/plot/LinePlot.php by phpmd

      Method Legend has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function Legend($graph)
          {
              if ($this->legend != '') {
                  if ($this->filled && !$this->fillgrad) {
                      $graph->legend->Add(
      Severity: Minor
      Found in src/plot/LinePlot.php - About 1 hr to fix

        Function FastStroke has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            public function FastStroke($img, $xscale, $yscale, $aStartPoint = 0, $exist_x = true)
            {
                // An optimized stroke for many data points with no extra
                // features but 60% faster. You can't have values or line styles, or null
                // values in plots.
        Severity: Minor
        Found in src/plot/LinePlot.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 FastStroke has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function FastStroke($img, $xscale, $yscale, $aStartPoint = 0, $exist_x = true)
            {
                // An optimized stroke for many data points with no extra
                // features but 60% faster. You can't have values or line styles, or null
                // values in plots.
        Severity: Minor
        Found in src/plot/LinePlot.php - About 1 hr to fix

          Method AddArea has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public function AddArea($aMin = 0, $aMax = 0, $aFilled = LP_AREA_NOT_FILLED, $aColor = 'gray9', $aBorder = LP_AREA_BORDER)
          Severity: Minor
          Found in src/plot/LinePlot.php - About 35 mins to fix

            Method FastStroke has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                public function FastStroke($img, $xscale, $yscale, $aStartPoint = 0, $exist_x = true)
            Severity: Minor
            Found in src/plot/LinePlot.php - About 35 mins to fix

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

                  public function Legend($graph)
                  {
                      if ($this->legend != '') {
                          if ($this->filled && !$this->fillgrad) {
                              $graph->legend->Add(
              Severity: Minor
              Found in src/plot/LinePlot.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

              The method Stroke() has 269 lines of code. Current threshold is set to 100. Avoid really long methods.
              Open

                  public function Stroke($img, $xscale, $yscale)
                  {
                      $idx       = 0;
                      $numpoints = safe_count($this->coords[0]);
                      if (isset($this->coords[1])) {
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              The method Stroke() has an NPath complexity of 25158340800. The configured NPath complexity threshold is 200.
              Open

                  public function Stroke($img, $xscale, $yscale)
                  {
                      $idx       = 0;
                      $numpoints = safe_count($this->coords[0]);
                      if (isset($this->coords[1])) {
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              NPathComplexity

              Since: 0.1

              The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

              Example

              class Foo {
                  function bar() {
                      // lots of complicated code
                  }
              }

              Source https://phpmd.org/rules/codesize.html#npathcomplexity

              The method Stroke() has a Cyclomatic Complexity of 60. The configured cyclomatic complexity threshold is 10.
              Open

                  public function Stroke($img, $xscale, $yscale)
                  {
                      $idx       = 0;
                      $numpoints = safe_count($this->coords[0]);
                      if (isset($this->coords[1])) {
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              CyclomaticComplexity

              Since: 0.1

              Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

              Example

              // Cyclomatic Complexity = 11
              class Foo {
              1   public function example() {
              2       if ($a == $b) {
              3           if ($a1 == $b1) {
                              fiddle();
              4           } elseif ($a2 == $b2) {
                              fiddle();
                          } else {
                              fiddle();
                          }
              5       } elseif ($c == $d) {
              6           while ($c == $d) {
                              fiddle();
                          }
              7        } elseif ($e == $f) {
              8           for ($n = 0; $n < $h; $n++) {
                              fiddle();
                          }
                      } else {
                          switch ($z) {
              9               case 1:
                                  fiddle();
                                  break;
              10              case 2:
                                  fiddle();
                                  break;
              11              case 3:
                                  fiddle();
                                  break;
                              default:
                                  fiddle();
                                  break;
                          }
                      }
                  }
              }

              Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                      $img->Polygon($cord, false, true);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                  $cord[$idx++] = $yscale->Translate($min);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $areaCoords[] = $cord[$this->filledAreas[$i][0] * $factor];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $cord[$idx++] = $xscale->Translate($xs);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                          $cord,
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $cord[$idx++] = $yscale->scale_abs[1];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                  $cord[$idx++] = $yt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $yt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $cord[$idx - 3];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $img->Polygon(array_slice($cord, 2, safe_count($cord) - 4));
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $fillmin;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $img->Polygon(array_slice($cord, 2, safe_count($cord) - 4));
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $cord[$idx++] = $xscale->Translate($xs);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                          $cord[$idx++] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                  $cord[$idx++] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $cord[$idx++] = $yscale->scale_abs[1];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $fillmin;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                  $cord[$idx++] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                  $cord[$idx++] = $yt_old;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $grad->FilledFlatPolygon($cord, $this->fillgrad_fromcolor, $this->fillgrad_tocolor);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                      $cord[$idx++] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $cord[] = $yt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $cord[$idx++] = $fillmin;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                      $cord[$idx++] = $yt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $cord[] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $cord[$idx - 3];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $yt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $yt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                  $cord[$idx++] = $yscale->Translate(0);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                      $cord[$idx++] = $xt;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                              $img->FilledPolygon($cord);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              Avoid using undefined variables such as '$cord' which will lead to PHP notices.
              Open

                                  $img->Polygon($cord);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              UndefinedVariable

              Since: 2.8.0

              Detects when a variable is used that has not been defined before.

              Example

              class Foo
              {
                  private function bar()
                  {
                      // $message is undefined
                      echo $message;
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#undefinedvariable

              The method SetFillFromYMin has a boolean flag argument $f, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function SetFillFromYMin($f = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method FastStroke has a boolean flag argument $exist_x, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function FastStroke($img, $xscale, $yscale, $aStartPoint = 0, $exist_x = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method SetBarCenter has a boolean flag argument $aFlag, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function SetBarCenter($aFlag = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method SetFillGradient has a boolean flag argument $aFilled, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function SetFillGradient($aFromColor, $aToColor, $aNumColors = 100, $aFilled = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method SetFillFromYMax has a boolean flag argument $f, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function SetFillFromYMax($f = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method SetFillColor has a boolean flag argument $aFilled, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function SetFillColor($aColor, $aFilled = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method __construct has a boolean flag argument $datax, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function __construct($datay, $datax = false)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method SetStepStyle has a boolean flag argument $aFlag, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function SetStepStyle($aFlag = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method SetFastStroke has a boolean flag argument $aFlg, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function SetFastStroke($aFlg = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method SetFilled has a boolean flag argument $aFlg, which is a certain sign of a Single Responsibility Principle violation.
              Open

                  public function SetFilled($aFlg = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              BooleanArgumentFlag

              Since: 1.4.0

              A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

              Example

              class Foo {
                  public function bar($flag = true) {
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                      } else {
                          $exist_x = false;
                      }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                      } else {
                          $textadj = 0;
                      }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                                  } else {
                                      $img->SetStartPoint($xt, $yt);
                                  }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              Avoid using static access to class '\Amenadiel\JpGraph\Util\JpGraphError' in method 'Stroke'.
              Open

                              Util\JpGraphError::RaiseL(2003, safe_count($this->coords[1]), $numpoints);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              StaticAccess

              Since: 1.4.0

              Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

              Example

              class Foo
              {
                  public function bar()
                  {
                      Bar::baz();
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#staticaccess

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                                  } else {
                                      $this->mark->SetCSIMTarget($this->csimtargets[$pnts]);
                                  }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Legend uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $graph->legend->Add(
                                  $this->legend,
                                  $this->color,
                                  $this->mark,
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $exist_x = true;
                          }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $x = $pnts + $textadj;
                          }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              Avoid using static access to class '\Amenadiel\JpGraph\Util\ColorFactory' in method '__construct'.
              Open

                      $this->color      = Util\ColorFactory::getColor();
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              StaticAccess

              Since: 1.4.0

              Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

              Example

              class Foo
              {
                  public function bar()
                  {
                      Bar::baz();
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#staticaccess

              The method FastStroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                      } else {
                          $textadj = 0;
                      }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method FastStroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $x = $pnts + $textadj;
                          }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                              } else {
                                  $fillmin = $yscale->Translate(0);
                              }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                              } else {
                                  $cord[$idx++] = $yscale->Translate(0);
                              }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                                  } else {
                                      $yt_old = $yt;
                                      $xt_old = $xt;
                                  }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $min = $yscale->GetMinVal();
                              if ($min > 0 || $this->fillFromMin) {
                                  $fillmin = $yscale->scale_abs[0]; //Translate($min);
                              } else {
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $tmp1 = $y;
                              $prev = $this->coords[0][$pnts - 1];
                              if ($tmp1 === '' || $tmp1 === null || $tmp1 === 'X') {
                                  $tmp1 = 'x';
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                              } else {
                                  $x = $pnts;
                              }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $img->SetColor($this->fill_color);
                              $img->FilledPolygon($cord);
                          }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method PreStrokeAdjust uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $a = 0;
                              $b = 0;
                          }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method FastStroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              Util\JpGraphError::RaiseL(10002); //('Plot too complicated for fast line Stroke. Use standard Stroke()');
                          }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                              } else {
                                  $img->Polygon($cord);
                              }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              Avoid using static access to class '\Amenadiel\JpGraph\Util\JpGraphError' in method 'FastStroke'.
              Open

                              Util\JpGraphError::RaiseL(10002); //('Plot too complicated for fast line Stroke. Use standard Stroke()');
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              StaticAccess

              Since: 1.4.0

              Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

              Example

              class Foo
              {
                  public function bar()
                  {
                      Bar::baz();
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#staticaccess

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                      } else {
                          $xs = $textadj + $startpoint;
                      }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              $x = $pnts + $textadj;
                          }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                                  } else {
                                      $cord[$idx++] = $xt;
                                      $cord[$idx++] = $yt;
                                  }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                          } else {
                              if ($min > 0 || $this->fillFromMin) {
                                  $cord[$idx++] = $yscale->Translate($min);
                              } else {
                                  $cord[$idx++] = $yscale->Translate(0);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              The method Stroke uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
              Open

                              } else {
                                  if (is_numeric($tmp1) && (is_numeric($prev) || $prev === '-')) {
                                      $cord[$idx++] = $xt;
                                      $cord[$idx++] = $yt;
                                  }
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ElseExpression

              Since: 1.4.0

              An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

              Example

              class Foo
              {
                  public function bar($flag)
                  {
                      if ($flag) {
                          // one branch
                      } else {
                          // another branch
                      }
                  }
              }

              Source https://phpmd.org/rules/cleancode.html#elseexpression

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                              if (!empty($this->csimtargets[$pnts])) {
                                  if (!empty($this->csimwintargets[$pnts])) {
                                      $this->mark->SetCSIMTarget($this->csimtargets[$pnts], $this->csimwintargets[$pnts]);
                                  } else {
                                      $this->mark->SetCSIMTarget($this->csimtargets[$pnts]);
              Severity: Minor
              Found in src/plot/LinePlot.php and 1 other location - About 40 mins to fix
              src/plot/ScatterPlot.php on lines 105..112

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 93.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 3 locations. Consider refactoring.
              Open

                      if (isset($this->coords[1])) {
                          if (safe_count($this->coords[1]) != $numpoints) {
                              Util\JpGraphError::RaiseL(2003, safe_count($this->coords[1]), $numpoints);
                          //("Number of X and Y points are not equal. Number of X-points:". safe_count($this->coords[1])." Number of Y-points:$numpoints");
                          } else {
              Severity: Minor
              Found in src/plot/LinePlot.php and 2 other locations - About 30 mins to fix
              src/plot/BarPlot.php on lines 396..405
              src/plot/StockPlot.php on lines 98..107

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 91.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Avoid variables with short names like $a. Configured minimum length is 3.
              Open

                              $a = 0.5;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $xt. Configured minimum length is 3.
              Open

                      $xt           = $xscale->Translate($xs);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $f. Configured minimum length is 3.
              Open

                  public function SetFillFromYMin($f = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $y. Configured minimum length is 3.
              Open

                          $y  = $this->coords[0][$pnts];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $yt. Configured minimum length is 3.
              Open

                          $yt = $yscale->Translate($y);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $xt. Configured minimum length is 3.
              Open

                          $xt = $xscale->Translate($x);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $f. Configured minimum length is 3.
              Open

                  public function SetFillFromYMax($f = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $b. Configured minimum length is 3.
              Open

                              $b = 0.5;
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $x. Configured minimum length is 3.
              Open

                              $x = $this->coords[1][$pnts];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $xs. Configured minimum length is 3.
              Open

                          $xs = $this->coords[1][$startpoint];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $y. Configured minimum length is 3.
              Open

                          $y = $this->coords[0][$pnts];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $yt. Configured minimum length is 3.
              Open

                      $yt           = $yscale->Translate($this->coords[0][$startpoint]);
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Avoid variables with short names like $x. Configured minimum length is 3.
              Open

                              $x = $this->coords[1][$pnts];
              Severity: Minor
              Found in src/plot/LinePlot.php by phpmd

              ShortVariable

              Since: 0.2

              Detects when a field, local, or parameter has a very short name.

              Example

              class Something {
                  private $q = 15; // VIOLATION - Field
                  public static function main( array $as ) { // VIOLATION - Formal
                      $r = 20 + $this->q; // VIOLATION - Local
                      for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                          $r += $this->q;
                      }
                  }
              }

              Source https://phpmd.org/rules/naming.html#shortvariable

              Method name "LinePlot::SetFillFromYMin" is not in camel caps format
              Open

                  public function SetFillFromYMin($f = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetFilled" is not in camel caps format
              Open

                  public function SetFilled($aFlg = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::Legend" is not in camel caps format
              Open

                  public function Legend($graph)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetFillGradient" is not in camel caps format
              Open

                  public function SetFillGradient($aFromColor, $aToColor, $aNumColors = 100, $aFilled = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::FastStroke" is not in camel caps format
              Open

                  public function FastStroke($img, $xscale, $yscale, $aStartPoint = 0, $exist_x = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetStepStyle" is not in camel caps format
              Open

                  public function SetStepStyle($aFlag = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetColor" is not in camel caps format
              Open

                  public function SetColor($aColor)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::PreStrokeAdjust" is not in camel caps format
              Open

                  public function PreStrokeAdjust($graph)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetBarCenter" is not in camel caps format
              Open

                  public function SetBarCenter($aFlag = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetStyle" is not in camel caps format
              Open

                  public function SetStyle($aStyle)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::AddArea" is not in camel caps format
              Open

                  public function AddArea($aMin = 0, $aMax = 0, $aFilled = LP_AREA_NOT_FILLED, $aColor = 'gray9', $aBorder = LP_AREA_BORDER)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetFastStroke" is not in camel caps format
              Open

                  public function SetFastStroke($aFlg = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetFillColor" is not in camel caps format
              Open

                  public function SetFillColor($aColor, $aFilled = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::SetFillFromYMax" is not in camel caps format
              Open

                  public function SetFillFromYMax($f = true)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Method name "LinePlot::Stroke" is not in camel caps format
              Open

                  public function Stroke($img, $xscale, $yscale)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Line exceeds 120 characters; contains 126 characters
              Open

                  public function AddArea($aMin = 0, $aMax = 0, $aFilled = LP_AREA_NOT_FILLED, $aColor = 'gray9', $aBorder = LP_AREA_BORDER)
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Line exceeds 120 characters; contains 141 characters
              Open

                          //("Number of X and Y points are not equal. Number of X-points:". safe_count($this->coords[1])." Number of Y-points:$numpoints");
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Line exceeds 120 characters; contains 123 characters
              Open

                                          ($this->filledAreas[$i][1] - $this->filledAreas[$i][0] + ($this->step_style ? 0 : 1)) * $factor
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              Line exceeds 120 characters; contains 121 characters
              Open

                              Util\JpGraphError::RaiseL(10002); //('Plot too complicated for fast line Stroke. Use standard Stroke()');
              Severity: Minor
              Found in src/plot/LinePlot.php by phpcodesniffer

              There are no issues that match your filters.

              Category
              Status