werneckbh/qr-code

View on GitHub

Showing 100 of 100 total issues

Method mask has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function mask (int $width, array $frame, int $level) : array
    {
        $minDemerit = PHP_INT_MAX;
        $bestMaskNum = 0;
        $bestMask = [];
Severity: Minor
Found in src/QR_Code/Encoder/Mask.php - About 1 hr to fix

    Method eps has 9 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        public static function eps (string $text, $outfile = false, $level = QR_ECLEVEL_L, int $size = 3, int $margin = 4, bool $saveAndPrint = false, int $back_color = QR_WHITE, int $fore_color = QR_BLACK, bool $cmyk = false) : void
    Severity: Major
    Found in src/QR_Code/QR_Code.php - About 1 hr to fix

      Method appendPaddingBit has 27 lines of code (exceeds 25 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 1 hr to fix

        Method makeMaskNo has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function makeMaskNo ($maskNo, $width, $s, &$d, $maskGenOnly = false)
            {
                $b = 0;
                $bitMask = [];
        
        Severity: Minor
        Found in src/QR_Code/Encoder/Mask.php - About 1 hr to fix

          Method eatNum has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function eatNum () : int
              {
                  $ln = Specifications::lengthIndicator(QR_MODE_NUM, $this->input->getVersion());
          
                  $p = 0;
          Severity: Minor
          Found in src/QR_Code/Util/Split.php - About 1 hr to fix

            Method encode_rs_char has 27 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function encode_rs_char ($data, &$parity)
                {
                    $MM =& $this->mm;
                    $NN =& $this->nn;
                    $ALPHA_TO =& $this->alpha_to;
            Severity: Minor
            Found in src/QR_Code/Encoder/ErrorCorrection/RsItem.php - About 1 hr to fix

              Method toByte has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function toByte () : array
                  {
                      $size = $this->size();
              
                      if ($size == 0) {
              Severity: Minor
              Found in src/QR_Code/Encoder/BitStream.php - About 1 hr to fix

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

                    public static function png (string $text, $outfile = false, $level = QR_ECLEVEL_L, int $size = 3, int $margin = 4, bool $saveAndPrint = false, int $back_color = QR_WHITE, int $fore_color = QR_BLACK) : void
                Severity: Major
                Found in src/QR_Code/QR_Code.php - About 1 hr to fix

                  Method eps has 8 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      public static function eps ($frame, $filename = false, int $pixelPerPoint = 4, int $outerFrame = 4, bool $saveAndPrint = false, int $backColor = 0xFFFFFF, int $foreColor = 0x000000, bool $cmyk = false) : void
                  Severity: Major
                  Found in src/QR_Code/Encoder/Vector.php - About 1 hr to fix

                    Method svg has 8 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        public static function svg (string $text, $outfile = false, $level = QR_ECLEVEL_L, int $size = 3, int $margin = 4, bool $saveAndPrint = false, int $back_color = QR_WHITE, int $fore_color = QR_BLACK) : void
                    Severity: Major
                    Found in src/QR_Code/QR_Code.php - About 1 hr to fix

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

                          public function encode_rs_char ($data, &$parity)
                          {
                              $MM =& $this->mm;
                              $NN =& $this->nn;
                              $ALPHA_TO =& $this->alpha_to;
                      Severity: Minor
                      Found in src/QR_Code/Encoder/ErrorCorrection/RsItem.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

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

                          public function convertData () : int
                          {
                              $ver = $this->estimateVersion();
                              if ($ver > $this->getVersion()) {
                                  $this->setVersion($ver);
                      Severity: Minor
                      Found in src/QR_Code/Encoder/Input.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

                      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 __construct has 7 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            public function __construct (string $type, bool $pref = true, string $street, string $city, string $state, string $zip, string $country)
                        Severity: Major
                        Found in src/QR_Code/Types/vCard/Address.php - About 50 mins to fix

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

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

                            Similar blocks of code found in 3 locations. Consider refactoring.
                            Open

                                        if (self::isDigitAt($this->dataStr, $p)) {
                                            $q = $p;
                                            while (self::isDigitAt($this->dataStr, $q)) {
                                                $q++;
                                            }
                            Severity: Major
                            Found in src/QR_Code/Util/Split.php and 2 other locations - About 50 mins to fix
                            src/QR_Code/Util/Split.php on lines 225..253
                            src/QR_Code/Util/Split.php on lines 238..251

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 97.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

                            Similar blocks of code found in 3 locations. Consider refactoring.
                            Open

                                        if ($mode == QR_MODE_NUM) {
                                            $q = $p;
                                            while (self::isDigitAt($this->dataStr, $q)) {
                                                $q++;
                                            }
                            Severity: Major
                            Found in src/QR_Code/Util/Split.php and 2 other locations - About 50 mins to fix
                            src/QR_Code/Util/Split.php on lines 152..169
                            src/QR_Code/Util/Split.php on lines 238..251

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 97.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

                            Similar blocks of code found in 3 locations. Consider refactoring.
                            Open

                                        } elseif ($mode == QR_MODE_AN) {
                                            $q = $p;
                                            while (self::isAlnumAt($this->dataStr, $q)) {
                                                $q++;
                                            }
                            Severity: Major
                            Found in src/QR_Code/Util/Split.php and 2 other locations - About 50 mins to fix
                            src/QR_Code/Util/Split.php on lines 152..169
                            src/QR_Code/Util/Split.php on lines 225..253

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 97.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

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

                                public static function factory ($level = QR_ECLEVEL_L, int $size = 3, int $margin = 4, int $backColor = QR_WHITE, int $foreColor = QR_BLACK, bool $cmyk = false) : Encoder
                            Severity: Minor
                            Found in src/QR_Code/Encoder/Encoder.php - About 45 mins to fix

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

                                  public function eatNum () : int
                                  {
                                      $ln = Specifications::lengthIndicator(QR_MODE_NUM, $this->input->getVersion());
                              
                                      $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

                              Severity
                              Category
                              Status
                              Source
                              Language