HuasoFoundries/jpgraph

View on GitHub

Showing 6,805 of 6,805 total issues

Avoid too many return statements within this method.
Open

            return mb_convert_encoding($aTxt, 'UTF-8', 'EUC-JP');
Severity: Major
Found in src/text/LanguageConv.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

            return [$sat, round($sat - $sat * ($aVal - 0.75) / $a), 0];
    Severity: Major
    Found in src/util/RGB.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                  return $w;
      Severity: Major
      Found in src/text/TextProperty.php - About 30 mins to fix

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

            public function Rectangle($x1, $y1, $x2, $y2)
            {
                list($x1, $y1) = $this->scale->Translate($x1, $y1);
                list($x2, $y2) = $this->scale->Translate($x2, $y2);
                $this->img->Rectangle($x1, $y1, $x2, $y2);
        Severity: Minor
        Found in src/graph/Shape.php and 2 other locations - About 30 mins to fix
        src/graph/Shape.php on lines 43..48
        src/graph/Shape.php on lines 117..122

        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 90.

        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

            public function FilledRectangle($x1, $y1, $x2, $y2)
            {
                list($x1, $y1) = $this->scale->Translate($x1, $y1);
                list($x2, $y2) = $this->scale->Translate($x2, $y2);
                $this->img->FilledRectangle($x1, $y1, $x2, $y2);
        Severity: Minor
        Found in src/graph/Shape.php and 2 other locations - About 30 mins to fix
        src/graph/Shape.php on lines 43..48
        src/graph/Shape.php on lines 110..115

        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 90.

        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 2 locations. Consider refactoring.
        Open

                                if ($this->iUsePlotWeekendBackground && $doback) {
                                    $img->FilledRectangle($x, $yt + $this->day->iFrameWeight, $x + $width, $img->height - $img->bottom_margin);
                                } else {
                                    $img->FilledRectangle($x, $yt + $this->day->iFrameWeight, $x + $width, $yb - $this->day->iFrameWeight);
                                }
        Severity: Minor
        Found in src/graph/GanttScale.php and 1 other location - About 30 mins to fix
        src/graph/GanttScale.php on lines 760..774

        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 90.

        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 2 locations. Consider refactoring.
        Open

                            if ($this->iUsePlotWeekendBackground && $doback) {
                                $img->FilledRectangle(
                                    $x,
                                    $yt + $this->day->iFrameWeight,
                                    $x + $daywidth,
        Severity: Minor
        Found in src/graph/GanttScale.php and 1 other location - About 30 mins to fix
        src/graph/GanttScale.php on lines 665..669

        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 90.

        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 2 locations. Consider refactoring.
        Open

                if ($n > 0) {
                    $maxh = 0;
                    $maxw = 0;
                    foreach ($this->iLabels as $key => $lbl) {
                        $value->Set($lbl);
        Severity: Minor
        Found in src/plot/WindrosePlot.php and 1 other location - About 30 mins to fix
        src/plot/WindrosePlot.php on lines 1044..1054

        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 90.

        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 2 locations. Consider refactoring.
        Open

                if ($n > 0) {
                    $maxh = 0;
                    $maxw = 0;
                    foreach ($this->iLabels as $key => $lbl) {
                        $value->Set($lbl);
        Severity: Minor
        Found in src/plot/WindrosePlot.php and 1 other location - About 30 mins to fix
        src/plot/WindrosePlot.php on lines 1004..1014

        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 90.

        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

            public function Line($x1, $y1, $x2, $y2)
            {
                list($x1, $y1) = $this->scale->Translate($x1, $y1);
                list($x2, $y2) = $this->scale->Translate($x2, $y2);
                $this->img->Line($x1, $y1, $x2, $y2);
        Severity: Minor
        Found in src/graph/Shape.php and 2 other locations - About 30 mins to fix
        src/graph/Shape.php on lines 110..115
        src/graph/Shape.php on lines 117..122

        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 90.

        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

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

            public function HideTickMarks($aFlag = true)
        Severity: Minor
        Found in src/graph/RadarGraph.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 Show has a boolean flag argument $aShowMajor, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function Show($aShowMajor = true)
        Severity: Minor
        Found in src/graph/RadarGrid.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 SetColor has a boolean flag argument $aFillColor, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function SetColor($aColor, $aFillColor = false)
        Severity: Minor
        Found in src/graph/RadarGrid.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 ShowMinorTickmarks has a boolean flag argument $aFlag, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function ShowMinorTickmarks($aFlag = true)
        Severity: Minor
        Found in src/graph/RadarGraph.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 ShowFrame has a boolean flag argument $aShow, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function ShowFrame($aShow = true)
        Severity: Minor
        Found in src/graph/RectPattern.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 Set has a boolean flag argument $aMinStep, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function Set($aMajStep, $aMinStep = false)
        Severity: Minor
        Found in src/graph/RadarLinearTicks.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 SetFill has a boolean flag argument $f, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function SetFill($f = true)
        Severity: Minor
        Found in src/graph/RadarGrid.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 Get has a boolean flag argument $aCapital, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public static function Get($aSymb, $aCapital = false)
        Severity: Minor
        Found in src/graph/SymChar.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 SupressMinorTickMarks has a boolean flag argument $aHide, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function SupressMinorTickMarks($aHide = true)
        Severity: Minor
        Found in src/graph/Ticks.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 SupressFirst has a boolean flag argument $aHide, which is a certain sign of a Single Responsibility Principle violation.
        Open

            public function SupressFirst($aHide = true)
        Severity: Minor
        Found in src/graph/Ticks.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

        Severity
        Category
        Status
        Source
        Language