HuasoFoundries/jpgraph

View on GitHub
src/util/JpGraphErrObjectImg.php

Summary

Maintainability
A
3 hrs
Test Coverage

Method Raise has 75 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function Raise($aMsg, $aHalt = true)
    {
        $img_iconerror =
            'iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAaV' .
            'BMVEX//////2Xy8mLl5V/Z2VvMzFi/v1WyslKlpU+ZmUyMjEh/' .
Severity: Major
Found in src/util/JpGraphErrObjectImg.php - About 3 hrs to fix

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

        public function Raise($aMsg, $aHalt = true)
        {
            $img_iconerror =
                'iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAaV' .
                'BMVEX//////2Xy8mLl5V/Z2VvMzFi/v1WyslKlpU+ZmUyMjEh/' .
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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

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

        public function Raise($aMsg, $aHalt = true)
        {
            $img_iconerror =
                'iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAaV' .
                'BMVEX//////2Xy8mLl5V/Z2VvMzFi/v1WyslKlpU+ZmUyMjEh/' .
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.php by phpmd

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

        public function Raise($aMsg, $aHalt = true)
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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 Raise uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

            } else {
                $supported = 0;
            }
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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\Image\Image' in method 'Raise'.
    Open

            $erricon = Image\Image::CreateFromString(base64_decode($img_iconerror, true));
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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 Raise uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

            } else {
                $img->Headers();
                $img->Stream();
            }
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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 Raise() contains an exit expression.
    Open

                die($this->iTitle . ' ' . $aMsg);
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.php by phpmd

    ExitExpression

    Since: 0.2

    An exit-expression within regular code is untestable and therefore it should be avoided. Consider to move the exit-expression into some kind of startup script where an error/exception code is returned to the calling environment.

    Example

    class Foo {
        public function bar($param)  {
            if ($param === 42) {
                exit(23);
            }
        }
    }

    Source https://phpmd.org/rules/design.html#exitexpression

    The method Raise() contains an exit expression.
    Open

                die();
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.php by phpmd

    ExitExpression

    Since: 0.2

    An exit-expression within regular code is untestable and therefore it should be avoided. Consider to move the exit-expression into some kind of startup script where an error/exception code is returned to the calling environment.

    Example

    class Foo {
        public function bar($param)  {
            if ($param === 42) {
                exit(23);
            }
        }
    }

    Source https://phpmd.org/rules/design.html#exitexpression

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

            $m = floor($w / 2 - 5);
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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 $l. Configured minimum length is 3.
    Open

            $l = 110;
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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 $w. Configured minimum length is 3.
    Open

            $w = 400;
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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 $h. Configured minimum length is 3.
    Open

            $h = 100 + 15 * max(0, $lines - 3);
    Severity: Minor
    Found in src/util/JpGraphErrObjectImg.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 "JpGraphErrObjectImg::Raise" is not in camel caps format
    Open

        public function Raise($aMsg, $aHalt = true)

    There are no issues that match your filters.

    Category
    Status