werneckbh/qr-code

View on GitHub
src/QR_Code/Encoder/Image.php

Summary

Maintainability
A
2 hrs
Test Coverage

Method png has 7 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public static function png (array $frame, $filename = false, int $pixelPerPoint = 4, int $outerFrame = 4, bool $saveAndPrint = false, int $backColor = QR_WHITE, int $foreColor = QR_BLACK) : void
Severity: Major
Found in src/QR_Code/Encoder/Image.php - About 50 mins to fix

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

        public static function image (array $frame, int $pixelPerPoint = 4, int $outerFrame = 4, int $backColor = QR_WHITE, int $foreColor = QR_BLACK)
    Severity: Minor
    Found in src/QR_Code/Encoder/Image.php - About 35 mins to fix

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

          public static function jpg (array $frame, $filename = false, int $pixelPerPoint = 8, int $outerFrame = 4, int $quality = 85) : void
      Severity: Minor
      Found in src/QR_Code/Encoder/Image.php - About 35 mins to fix

        Function image has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function image (array $frame, int $pixelPerPoint = 4, int $outerFrame = 4, int $backColor = QR_WHITE, int $foreColor = QR_BLACK)
            {
                $h = count($frame);
                $w = strlen($frame[0]);
        
        Severity: Minor
        Found in src/QR_Code/Encoder/Image.php - About 25 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

        There are no issues that match your filters.

        Category
        Status