HuasoFoundries/jpgraph

View on GitHub
src/plot/PolarPlot.php

Summary

Maintainability
A
0 mins
Test Coverage

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

            Util\JpGraphError::RaiseL(17001);
Severity: Minor
Found in src/plot/PolarPlot.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 Legend uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

            } else {
                $aGraph->legend->Add(
                    $this->legend,
                    $color,
                    $this->mark,
Severity: Minor
Found in src/plot/PolarPlot.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 {
                $this->mark->Stroke($img, $x1, $y1);
            }
Severity: Minor
Found in src/plot/PolarPlot.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

A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line 20 and the first side effect is on line 20.
Open

<?php
Severity: Minor
Found in src/plot/PolarPlot.php by phpcodesniffer

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

        $p               = [];
Severity: Minor
Found in src/plot/PolarPlot.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 $n. Configured minimum length is 3.
Open

        $n = safe_count($aData);
Severity: Minor
Found in src/plot/PolarPlot.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 $i. Configured minimum length is 3.
Open

        $i = 1;
Severity: Minor
Found in src/plot/PolarPlot.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 $i. Configured minimum length is 3.
Open

        $i               = 0;
Severity: Minor
Found in src/plot/PolarPlot.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 $m. Configured minimum length is 3.
Open

        $m = $this->coord[1];
Severity: Minor
Found in src/plot/PolarPlot.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 $x1. Configured minimum length is 3.
Open

            list($x1, $y1) = $scale->PTranslate($this->coord[2 * $i], $this->coord[2 * $i + 1]);
Severity: Minor
Found in src/plot/PolarPlot.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 $y1. Configured minimum length is 3.
Open

            list($x1, $y1) = $scale->PTranslate($this->coord[2 * $i], $this->coord[2 * $i + 1]);
Severity: Minor
Found in src/plot/PolarPlot.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 "PolarPlot::Stroke" is not in camel caps format
Open

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

Method name "PolarPlot::Max" is not in camel caps format
Open

    public function Max()
Severity: Minor
Found in src/plot/PolarPlot.php by phpcodesniffer

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

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

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

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

Method name "PolarPlot::SetCSIMTargets" is not in camel caps format
Open

    public function SetCSIMTargets($aTargets, $aAlts = null)
Severity: Minor
Found in src/plot/PolarPlot.php by phpcodesniffer

Method name "PolarPlot::SetWeight" is not in camel caps format
Open

    public function SetWeight($aWeight)
Severity: Minor
Found in src/plot/PolarPlot.php by phpcodesniffer

Method name "PolarPlot::SetLegend" is not in camel caps format
Open

    public function SetLegend($aLegend, $aCSIM = '', $aCSIMAlt = '')
Severity: Minor
Found in src/plot/PolarPlot.php by phpcodesniffer

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

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

Method name "PolarPlot::GetCSIMareas" is not in camel caps format
Open

    public function GetCSIMareas()
Severity: Minor
Found in src/plot/PolarPlot.php by phpcodesniffer

There are no issues that match your filters.

Category
Status