thinreports-php/thinreports-php

View on GitHub
src/Thinreports/Generator/PDF/Graphics.php

Summary

Maintainability
B
4 hrs
Test Coverage

Function buildGraphicStyles has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    public function buildGraphicStyles(array $attrs)
    {
        if (empty($attrs['stroke_width']) || $attrs['stroke_color'] == 'none') {
            $stroke_style = null;
        } else {
Severity: Minor
Found in src/Thinreports/Generator/PDF/Graphics.php - About 55 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

Method drawImage has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public function drawImage($filename, $x, $y, $width, $height, array $attrs = array())
Severity: Minor
Found in src/Thinreports/Generator/PDF/Graphics.php - About 45 mins to fix

    Method drawBase64Image has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        public function drawBase64Image($base64_string, $x, $y, $width, $height, array $attrs = array())
    Severity: Minor
    Found in src/Thinreports/Generator/PDF/Graphics.php - About 45 mins to fix

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

          public function drawEllipse($cx, $cy, $rx, $ry, array $attrs = array())
      Severity: Minor
      Found in src/Thinreports/Generator/PDF/Graphics.php - About 35 mins to fix

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

            public function drawLine($x1, $y1, $x2, $y2, array $attrs = array())
        Severity: Minor
        Found in src/Thinreports/Generator/PDF/Graphics.php - About 35 mins to fix

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

              public function drawRect($x, $y, $width, $height, array $attrs = array())
          Severity: Minor
          Found in src/Thinreports/Generator/PDF/Graphics.php - About 35 mins to fix

            There are no issues that match your filters.

            Category
            Status