Code Duplication    Length = 4-5 lines in 2 locations

src/Adapter/Qrcode/PhpQrCode.php 2 locations

@@ 631-635 (lines=5) @@
628
			}
629
630
			$cx = self::$alignmentPattern[$version][0];
631
			for($x=1; $x<$w - 1; $x++) {
632
				self::putAlignmentMarker($frame, 6, $cx);
633
				self::putAlignmentMarker($frame, $cx,  6);
634
				$cx += $d;
635
			}
636
637
			$cy = self::$alignmentPattern[$version][0];
638
			for($y=0; $y<$w-1; $y++) {
@@ 640-643 (lines=4) @@
637
			$cy = self::$alignmentPattern[$version][0];
638
			for($y=0; $y<$w-1; $y++) {
639
				$cx = self::$alignmentPattern[$version][0];
640
				for($x=0; $x<$w-1; $x++) {
641
					self::putAlignmentMarker($frame, $cx, $cy);
642
					$cx += $d;
643
				}
644
				$cy += $d;
645
			}
646
		}