XoopsModules25x/apcal

View on GitHub
thumbs/phpthumb.ico.php

Summary

Maintainability
B
6 hrs
Test Coverage

Function GD2ICOstring has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

    public function GD2ICOstring(&$gd_image_array)
    {
        foreach ($gd_image_array as $key => $gd_image) {
            $ImageWidths[$key]  = imagesx($gd_image);
            $ImageHeights[$key] = imagesy($gd_image);
Severity: Minor
Found in thumbs/phpthumb.ico.php - About 3 hrs 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 GD2ICOstring has 74 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function GD2ICOstring(&$gd_image_array)
    {
        foreach ($gd_image_array as $key => $gd_image) {
            $ImageWidths[$key]  = imagesx($gd_image);
            $ImageHeights[$key] = imagesy($gd_image);
Severity: Major
Found in thumbs/phpthumb.ico.php - About 2 hrs to fix

    The method GD2ICOstring() has an NPath complexity of 728. The configured NPath complexity threshold is 200.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 GD2ICOstring() has a Cyclomatic Complexity of 14. The configured cyclomatic complexity threshold is 10.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageHeights' which will lead to PHP notices.
    Open

                for ($y = $ImageHeights[$key] - 1; $y >= 0; $y--) {
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icXOR' which will lead to PHP notices.
    Open

                $icXOR[$key] = '';
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icAND' which will lead to PHP notices.
    Open

                $icAND[$key] = '';
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$totalcolors' which will lead to PHP notices.
    Open

                $totalcolors[$key]  = imagecolorstotal($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icXOR' which will lead to PHP notices.
    Open

                            $icXOR[$key] .= chr($b) . chr($g) . chr($r) . chr($a);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageWidths[$key], 4);      // LONG   biWidth;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] = '';
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$bpp' which will lead to PHP notices.
    Open

                        if ($bpp[$key] == 32) {
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icXOR' which will lead to PHP notices.
    Open

                            $icXOR[$key] .= chr($b) . chr($g) . chr($r);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icANDmask' which will lead to PHP notices.
    Open

                        $icANDmask[$key][$y] .= '0';
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icAND' which will lead to PHP notices.
    Open

                        $icAND[$key] .= chr(bindec(str_pad(substr($scanlinemaskbits, $i, 8), 8, '0', STR_PAD_LEFT)));
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= "\x28\x00\x00\x00";                              // DWORD  biSize;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icANDmask' which will lead to PHP notices.
    Open

                            @$icANDmask[$key][$y] .= '0';
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$bpp' which will lead to PHP notices.
    Open

                $bpp[$key]          = imageistruecolor($gd_image) ? 32 : 24;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageWidths' which will lead to PHP notices.
    Open

                    for ($x = 0; $x < $ImageWidths[$key]; $x++) {
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageHeights' which will lead to PHP notices.
    Open

                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icANDmask' which will lead to PHP notices.
    Open

                    while (strlen($icANDmask[$key][$y]) % 32) {
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageWidths' which will lead to PHP notices.
    Open

                $ImageWidths[$key]  = imagesx($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$bpp' which will lead to PHP notices.
    Open

                        } elseif ($bpp[$key] == 24) {
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icANDmask' which will lead to PHP notices.
    Open

                            @$icANDmask[$key][$y] .= '1';
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icANDmask' which will lead to PHP notices.
    Open

                foreach ($icANDmask[$key] as $y => $scanlinemaskbits) {
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageWidths' which will lead to PHP notices.
    Open

                $biSizeImage = $ImageWidths[$key] * $ImageHeights[$key] * ($bpp[$key] / 8);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageHeights' which will lead to PHP notices.
    Open

                $biSizeImage = $ImageWidths[$key] * $ImageHeights[$key] * ($bpp[$key] / 8);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$bpp' which will lead to PHP notices.
    Open

                $biSizeImage = $ImageWidths[$key] * $ImageHeights[$key] * ($bpp[$key] / 8);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageWidths' which will lead to PHP notices.
    Open

                $icondata .= chr($ImageWidths[$key]);                     // bWidth;          // Width, in pixels, of the image
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageHeights' which will lead to PHP notices.
    Open

                $icondata .= chr($ImageHeights[$key]);                    // bHeight;         // Height, in pixels, of the image
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$bpp' which will lead to PHP notices.
    Open

                $icondata .= chr($bpp[$key]) . "\x00";                      // wBitCount;       // Bits per pixel
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageHeights[$key] * 2, 4); // LONG   biHeight;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // LONG   biXPelsPerMeter;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // DWORD  biCompression;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= "\x01\x00";                                      // WORD   biPlanes;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // DWORD  biClrImportant;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageWidths' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageWidths[$key], 4);      // LONG   biWidth;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$ImageHeights' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageHeights[$key] * 2, 4); // LONG   biHeight;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // LONG   biYPelsPerMeter;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icAND' which will lead to PHP notices.
    Open

                $dwImageOffset += strlen($icAND[$key]);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$totalcolors' which will lead to PHP notices.
    Open

                $icondata .= chr($totalcolors[$key]);                     // bColorCount;     // Number of colors in image (0 if >=8bpp)
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icXOR' which will lead to PHP notices.
    Open

                $dwBytesInRes = 40 + strlen($icXOR[$key]) + strlen($icAND[$key]);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icXOR' which will lead to PHP notices.
    Open

                $dwImageOffset += strlen($icXOR[$key]);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$bpp' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= chr($bpp[$key]) . "\x00";                          // wBitCount;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icXOR' which will lead to PHP notices.
    Open

                $icondata .= $icXOR[$key];
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= "\x00\x00\x00\x00";                              // DWORD  biClrUsed;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= chr($bpp[$key]) . "\x00";                          // wBitCount;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($biSizeImage, 4);            // DWORD  biSizeImage;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $dwImageOffset += strlen($BitmapInfoHeader[$key]);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icAND' which will lead to PHP notices.
    Open

                $dwBytesInRes = 40 + strlen($icXOR[$key]) + strlen($icAND[$key]);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$BitmapInfoHeader' which will lead to PHP notices.
    Open

                $icondata .= $BitmapInfoHeader[$key];
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 '$icAND' which will lead to PHP notices.
    Open

                $icondata .= $icAND[$key];
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    Remove error control operator '@' on line 51.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

    Source http://phpmd.org/rules/cleancode.html#errorcontroloperator

    Remove error control operator '@' on line 53.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    ErrorControlOperator

    Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

    Example

    function foo($filePath) {
        $file = @fopen($filPath); // hides exceptions
        $key = @$array[$notExistingKey]; // assigns null to $key
    }

    Source http://phpmd.org/rules/cleancode.html#errorcontroloperator

    Avoid using static access to class 'phpthumb_functions' in method 'GD2ICOstring'.
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageWidths[$key], 4);      // LONG   biWidth;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 GD2ICOstring uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

                        } else {
                            @$icANDmask[$key][$y] .= '0';
                        }
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 'phpthumb_functions' in method 'GD2ICOstring'.
    Open

                        $argb = phpthumb_functions::GetPixelColor($gd_image, $x, $y);
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    Avoid using static access to class 'phpthumb_functions' in method 'GD2ICOstring'.
    Open

                $icondata      .= phpthumb_functions::LittleEndian2String($dwImageOffset, 4);      // dwImageOffset;   // Where in the file is this image?
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    Avoid using static access to class 'phpthumb_functions' in method 'GD2ICOstring'.
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageHeights[$key] * 2, 4); // LONG   biHeight;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    Avoid using static access to class 'phpthumb_functions' in method 'GD2ICOstring'.
    Open

                $icondata     .= phpthumb_functions::LittleEndian2String($dwBytesInRes, 4);       // dwBytesInRes;    // How many bytes in this resource?
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    Avoid using static access to class 'phpthumb_functions' in method 'GD2ICOstring'.
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($biSizeImage, 4);            // DWORD  biSizeImage;
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    Avoid using static access to class 'phpthumb_functions' in method 'GD2ICOstring'.
    Open

            $icondata .= phpthumb_functions::LittleEndian2String(count($gd_image_array), 2);  // idCount;      // How many images?
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    Each class must be in a namespace of at least one level (a top-level vendor name)
    Open

    class phpthumb_ico
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    The class phpthumb_ico is not named in CamelCase.
    Open

    class phpthumb_ico
    {
    
        // removed for XOOPS
        //function phpthumb_ico() {
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseClassName

    Since: 0.2

    It is considered best practice to use the CamelCase notation to name classes.

    Example

    class class_name {
    }

    Source

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

                        $g    = $argb['green'];
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    The parameter $gd_image_array is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseParameterName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name parameters.

    Example

    class ClassName {
        public function doSomething($user_name) {
        }
    }

    Source

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

                        $a    = round(255 * ((127 - $argb['alpha']) / 127));
    Severity: Minor
    Found in thumbs/phpthumb.ico.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 $r. Configured minimum length is 3.
    Open

                        $r    = $argb['red'];
    Severity: Minor
    Found in thumbs/phpthumb.ico.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    = $argb['blue'];
    Severity: Minor
    Found in thumbs/phpthumb.ico.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

    Line exceeds 120 characters; contains 132 characters
    Open

                $icondata .= chr($totalcolors[$key]);                     // bColorCount;     // Number of colors in image (0 if >=8bpp)
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    Line exceeds 120 characters; contains 150 characters
    Open

                $icondata      .= phpthumb_functions::LittleEndian2String($dwImageOffset, 4);      // dwImageOffset;   // Where in the file is this image?
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    Line exceeds 120 characters; contains 123 characters
    Open

                $icondata .= chr($ImageWidths[$key]);                     // bWidth;          // Width, in pixels, of the image
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    Line exceeds 120 characters; contains 126 characters
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageWidths[$key], 4);      // LONG   biWidth;
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    Line exceeds 120 characters; contains 127 characters
    Open

                $BitmapInfoHeader[$key] .= phpthumb_functions::LittleEndian2String($ImageHeights[$key] * 2, 4); // LONG   biHeight;
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    Line exceeds 120 characters; contains 149 characters
    Open

                $icondata     .= phpthumb_functions::LittleEndian2String($dwBytesInRes, 4);       // dwBytesInRes;    // How many bytes in this resource?
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    Line exceeds 120 characters; contains 124 characters
    Open

                $icondata .= chr($ImageHeights[$key]);                    // bHeight;         // Height, in pixels, of the image
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    Line exceeds 120 characters; contains 126 characters
    Open

            $icondata .= phpthumb_functions::LittleEndian2String(count($gd_image_array), 2);  // idCount;      // How many images?
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    Class name "phpthumb_ico" is not in camel caps format
    Open

    class phpthumb_ico
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpcodesniffer

    The variable $gd_image_array is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageHeights is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image_array is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image_array is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageWidths is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageWidths is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageHeights is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageHeights is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image_array is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image_array is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image_array is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageWidths is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageHeights is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageWidths is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $gd_image is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageHeights is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $BitmapInfoHeader is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $ImageWidths is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The method GD2ICOstring is not named in camelCase.
    Open

        public function GD2ICOstring(&$gd_image_array)
        {
            foreach ($gd_image_array as $key => $gd_image) {
                $ImageWidths[$key]  = imagesx($gd_image);
                $ImageHeights[$key] = imagesy($gd_image);
    Severity: Minor
    Found in thumbs/phpthumb.ico.php by phpmd

    CamelCaseMethodName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name methods.

    Example

    class ClassName {
        public function get_name() {
        }
    }

    Source

    There are no issues that match your filters.

    Category
    Status