werneckbh/qr-code

View on GitHub

Showing 100 of 100 total issues

Avoid deeply nested control flow statements.
Open

                        if (($this->runLength[$i - 3] < 0) || ($this->runLength[$i - 3] >= (4 * $fact))) {
                            $demerit += N3;
                        } elseif ((($i + 3) >= $length) || ($this->runLength[$i + 3] >= (4 * $fact))) {
                            $demerit += N3;
                        }
Severity: Major
Found in src/QR_Code/Encoder/Mask.php - About 45 mins to fix

    Method vectEPS has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        private static function vectEPS ($frame, int $pixelPerPoint = 4, int $outerFrame = 4, int $backColor = 0xFFFFFF, int $foreColor = 0x000000, bool $cmyk = false) : string
    Severity: Minor
    Found in src/QR_Code/Encoder/Vector.php - About 45 mins to fix

      Function vectEPS has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          private static function vectEPS ($frame, int $pixelPerPoint = 4, int $outerFrame = 4, int $backColor = 0xFFFFFF, int $foreColor = 0x000000, bool $cmyk = false) : string
          {
              $h = count($frame);
              $w = strlen($frame[0]);
      
      Severity: Minor
      Found in src/QR_Code/Encoder/Vector.php - About 45 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

      Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          public function __construct (string $firstName, string $lastName, string $title = '', string $email, string $org = '', string $orgTitle = '')
      Severity: Minor
      Found in src/QR_Code/Types/vCard/Person.php - About 45 mins to fix

        Function toUpper has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public function toUpper () : string
            {
                $stringLen = strlen($this->dataStr);
                $p = 0;
        
        Severity: Minor
        Found in src/QR_Code/Util/Split.php - About 45 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

        Method init_rs_char has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            public static function init_rs_char ($symsize, $gfpoly, $fcr, $prim, $nroots, $pad)
        Severity: Minor
        Found in src/QR_Code/Encoder/ErrorCorrection/RsItem.php - About 45 mins to fix

          Function appendPaddingBit has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              public function appendPaddingBit (BitStream &$bitStream) : int
              {
                  $bits = $bitStream->size();
                  $maxwords = Specifications::getDataLength($this->version, $this->level);
                  $maxbits = $maxwords * 8;
          Severity: Minor
          Found in src/QR_Code/Encoder/Input.php - About 45 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

          Function putAlignmentPattern has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function putAlignmentPattern ($version, &$frame, $width)
              {
                  if ($version < 2)
                      return;
          
          Severity: Minor
          Found in src/QR_Code/Config/Specifications.php - About 45 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

          Function check has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function check (int $mode, int $size, $data) : bool
              {
                  if ($size <= 0)
                      return false;
          
          Severity: Minor
          Found in src/QR_Code/Encoder/Input.php - About 45 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

          Method init_rs has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public static function init_rs ($symsize, $gfpoly, $fcr, $prim, $nroots, $pad)
          Severity: Minor
          Found in src/QR_Code/Encoder/ErrorCorrection/Rs.php - About 45 mins to fix

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

                public function makeMaskNo ($maskNo, $width, $s, &$d, $maskGenOnly = false)
            Severity: Minor
            Found in src/QR_Code/Encoder/Mask.php - About 35 mins to fix

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

                  public function encodeString (string $string, int $version, $level, int $hint, bool $caseSensitive)
              Severity: Minor
              Found in src/QR_Code/QR_Code.php - About 35 mins to fix

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

                    public static function raw (string $text, $outfile = false, int $level = QR_ECLEVEL_L, int $size = 3, int $margin = 4)
                Severity: Minor
                Found in src/QR_Code/QR_Code.php - About 35 mins to fix

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

                      function strSet (array &$srctab, int $x, int $y, string $repl, $replLen = false) : void
                  Severity: Minor
                  Found in src/helpers/functions.php - About 35 mins to fix

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

                        public function __construct ($dl, $data, $el, array &$ecc, RsItem $rs)
                    Severity: Minor
                    Found in src/QR_Code/Encoder/ErrorCorrection/RsBlock.php - About 35 mins to fix

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

                          public function __construct(\DateTime $dateTimeStart, \DateTime $dateTimeEnd, string $summary, string $description = '', string $location = '')
                      Severity: Minor
                      Found in src/QR_Code/Types/QR_CalendarEvent.php - About 35 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 text has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              public static function text (string $text, $outfile = false, $level = QR_ECLEVEL_L, int $size = 3, int $margin = 4) : array
                          Severity: Minor
                          Found in src/QR_Code/QR_Code.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

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

                                  private static function vectSVG ($frame, int $pixelPerPoint = 4, int $outerFrame = 4, int $backColor = 0xFFFFFF, int $foreColor = 0x000000) : string
                              Severity: Minor
                              Found in src/QR_Code/Encoder/Vector.php - About 35 mins to fix
                                Severity
                                Category
                                Status
                                Source
                                Language