Completed
Push — master ( ecedd9...16e889 )
by smiley
02:37
created
src/QRCode.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -41,15 +41,15 @@  discard block
 block discarded – undo
41 41
 	const ERROR_CORRECT_LEVEL_H = 2; // 30%.
42 42
 
43 43
 	// max bits @ ec level L:07 M:15 Q:25 H:30 %
44
-	const TYPE_01 =  1; //  152  128  104   72
45
-	const TYPE_02 =  2; //  272  224  176  128
46
-	const TYPE_03 =  3; //  440  352  272  208
47
-	const TYPE_04 =  4; //  640  512  384  288
48
-	const TYPE_05 =  5; //  864  688  496  368
49
-	const TYPE_06 =  6; // 1088  864  608  480
50
-	const TYPE_07 =  7; // 1248  992  704  528
51
-	const TYPE_08 =  8; // 1552 1232  880  688
52
-	const TYPE_09 =  9; // 1856 1456 1056  800
44
+	const TYPE_01 = 1; //  152  128  104   72
45
+	const TYPE_02 = 2; //  272  224  176  128
46
+	const TYPE_03 = 3; //  440  352  272  208
47
+	const TYPE_04 = 4; //  640  512  384  288
48
+	const TYPE_05 = 5; //  864  688  496  368
49
+	const TYPE_06 = 6; // 1088  864  608  480
50
+	const TYPE_07 = 7; // 1248  992  704  528
51
+	const TYPE_08 = 8; // 1552 1232  880  688
52
+	const TYPE_09 = 9; // 1856 1456 1056  800
53 53
 	const TYPE_10 = 10; // 2192 1728 1232  976
54 54
 
55 55
 	/**
@@ -270,9 +270,9 @@  discard block
 block discarded – undo
270 270
 				$count = 0;
271 271
 
272 272
 				if(
273
-					   $this->matrix[$row    ][$col    ]
274
-					|| $this->matrix[$row    ][$col + 1]
275
-					|| $this->matrix[$row + 1][$col    ]
273
+					   $this->matrix[$row][$col]
274
+					|| $this->matrix[$row][$col + 1]
275
+					|| $this->matrix[$row + 1][$col]
276 276
 					|| $this->matrix[$row + 1][$col + 1]
277 277
 				){
278 278
 					$count++;
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
 			foreach($range2 as $col){
300 300
 
301 301
 				if(
302
-					    $this->matrix[$row][$col    ]
302
+					    $this->matrix[$row][$col]
303 303
 					&& !$this->matrix[$row][$col + 1]
304 304
 					&&  $this->matrix[$row][$col + 2]
305 305
 					&&  $this->matrix[$row][$col + 3]
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
 			foreach($range2 as $row){
318 318
 
319 319
 				if(
320
-					    $this->matrix[$row    ][$col]
320
+					    $this->matrix[$row][$col]
321 321
 					&& !$this->matrix[$row + 1][$col]
322 322
 					&&  $this->matrix[$row + 2][$col]
323 323
 					&&  $this->matrix[$row + 3][$col]
@@ -360,11 +360,11 @@  discard block
 block discarded – undo
360 360
 		$this->lostPoint = 0;
361 361
 		$this->darkCount = 0;
362 362
 
363
-		$range = range(0, $this->pixelCount-1);
363
+		$range = range(0, $this->pixelCount - 1);
364 364
 
365 365
 		$this->testLevel1($range);
366
-		$this->testLevel2(range(0, $this->pixelCount-2));
367
-		$this->testLevel3($range, range(0, $this->pixelCount-7));
366
+		$this->testLevel2(range(0, $this->pixelCount - 2));
367
+		$this->testLevel3($range, range(0, $this->pixelCount - 7));
368 368
 		$this->testLevel4($range);
369 369
 
370 370
 		$this->lostPoint += (abs(100 * $this->darkCount / $this->pixelCount / $this->pixelCount - 50) / 5) * 10;
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 			$a = (int)floor($i / 3);
389 389
 			$b = $i % 3 + $this->pixelCount - 8 - 3;
390 390
 
391
-			$this->matrix[$a][$b] = $this->matrix[$b][$a] = !$test && (($bits >> $i) & 1) === 1;
391
+			$this->matrix[$a][$b] = $this->matrix[$b][$a] = !$test && (($bits >> $i)&1) === 1;
392 392
 		}
393 393
 
394 394
 	}
@@ -401,13 +401,13 @@  discard block
 block discarded – undo
401 401
 	 */
402 402
 	protected function setTypeInfo(bool $test, int $pattern){
403 403
 		$this->setPattern();
404
-		$bits = Util::getBCHTypeInfo(($this->errorCorrectLevel << 3) | $pattern);
404
+		$bits = Util::getBCHTypeInfo(($this->errorCorrectLevel << 3)|$pattern);
405 405
 
406 406
 		for($i = 0; $i < 15; $i++){
407
-			$mod = !$test && (($bits >> $i) & 1) === 1;
407
+			$mod = !$test && (($bits >> $i)&1) === 1;
408 408
 
409 409
 			switch(true){
410
-				case $i < 6: $this->matrix[$i    ][8] = $mod; break;
410
+				case $i < 6: $this->matrix[$i][8] = $mod; break;
411 411
 				case $i < 8: $this->matrix[$i + 1][8] = $mod; break;
412 412
 				default:
413 413
 					$this->matrix[$this->pixelCount - 15 + $i][8] = $mod;
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
 
416 416
 			switch(true){
417 417
 				case $i < 8: $this->matrix[8][$this->pixelCount - $i - 1] = $mod; break;
418
-				case $i < 9: $this->matrix[8][           15 + 1 - $i - 1] = $mod; break;
418
+				case $i < 9: $this->matrix[8][15 + 1 - $i - 1] = $mod; break;
419 419
 				default:
420 420
 					$this->matrix[8][15 - $i - 1] = $mod;
421 421
 			}
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
 
497 497
 			foreach($dcdata[$key] as $i => &$_dcdata){
498 498
 				$bdata = $this->bitBuffer->buffer;
499
-				$_dcdata = 0xff & $bdata[$i + $offset];
499
+				$_dcdata = 0xff&$bdata[$i + $offset];
500 500
 			}
501 501
 
502 502
 			$offset += $rsBlockDataCount;
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
 						$dark = false;
573 573
 
574 574
 						if($byteIndex < $dataCount){
575
-							$dark = (($data[$byteIndex] >> $bitIndex) & 1) === 1;
575
+							$dark = (($data[$byteIndex] >> $bitIndex)&1) === 1;
576 576
 						}
577 577
 
578 578
 						$a = $row + $_col;
@@ -633,7 +633,7 @@  discard block
 block discarded – undo
633 633
 					$this->matrix[$row + $r][$col + $c] =
634 634
 						(0 <= $r && $r <= 6 && ($c === 0 || $c === 6))
635 635
 						|| (0 <= $c && $c <= 6 && ($r === 0 || $r === 6))
636
-						|| (2 <= $c && $c <= 4 &&  2 <= $r && $r <= 4);
636
+						|| (2 <= $c && $c <= 4 && 2 <= $r && $r <= 4);
637 637
 				}
638 638
 			}
639 639
 		}
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
 						$this->matrix[$posI + $row][$posJ + $col] =
658 658
 							    $row === -2 || $row === 2
659 659
 							||  $col === -2 || $col === 2
660
-							|| ($row ===  0 && $col === 0);
660
+							|| ($row === 0 && $col === 0);
661 661
 					}
662 662
 				}
663 663
 			}
Please login to merge, or discard this patch.
src/Data/Kanji.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 	 * @return void
36 36
 	 * @throws \chillerlan\QRCode\Data\QRCodeDataException
37 37
 	 */
38
-	public function write(BitBuffer &$buffer){
38
+	public function write(BitBuffer&$buffer){
39 39
 
40 40
 		$i = 0;
41 41
 		while($i + 1 < $this->dataLength){
Please login to merge, or discard this patch.
src/Data/AlphaNum.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 	 *
47 47
 	 * @return void
48 48
 	 */
49
-	public function write(BitBuffer &$buffer){
49
+	public function write(BitBuffer&$buffer){
50 50
 		$i = 0;
51 51
 
52 52
 		while($i + 1 < $this->dataLength){
Please login to merge, or discard this patch.
src/Data/Number.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 	 *
35 35
 	 * @return void
36 36
 	 */
37
-	public function write(BitBuffer &$buffer){
37
+	public function write(BitBuffer&$buffer){
38 38
 		$i = 0;
39 39
 
40 40
 		while($i + 2 < $this->dataLength){
Please login to merge, or discard this patch.
src/Data/Byte.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 	 *
35 35
 	 * @return void
36 36
 	 */
37
-	public function write(BitBuffer &$buffer){
37
+	public function write(BitBuffer&$buffer){
38 38
 		$i = 0;
39 39
 		while($i < $this->dataLength){
40 40
 			$buffer->put(ord($this->data[$i]), 8);
Please login to merge, or discard this patch.