Completed
Branch master (2ed3f6)
by smiley
04:03 queued 47s
created
src/QRCode.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
 			for($row = 0; $row < $this->pixelCount; $row++){
253 253
 				for($col = 0; $col < $this->pixelCount - 6; $col++){
254 254
 					if(
255
-						    $this->matrix[$row][$col    ]
255
+							$this->matrix[$row][$col    ]
256 256
 						&& !$this->matrix[$row][$col + 1]
257 257
 						&&  $this->matrix[$row][$col + 2]
258 258
 						&&  $this->matrix[$row][$col + 3]
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 			for($col = 0; $col < $this->pixelCount; $col++){
269 269
 				for($row = 0; $row < $this->pixelCount - 6; $row++){
270 270
 					if(
271
-						    $this->matrix[$row    ][$col]
271
+							$this->matrix[$row    ][$col]
272 272
 						&& !$this->matrix[$row + 1][$col]
273 273
 						&&  $this->matrix[$row + 2][$col]
274 274
 						&&  $this->matrix[$row + 3][$col]
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -42,15 +42,15 @@  discard block
 block discarded – undo
42 42
 	const ERROR_CORRECT_LEVEL_H = 2; // 30%.
43 43
 
44 44
 	// max bits @ ec level L:07 M:15 Q:25 H:30 %
45
-	const TYPE_01 =  1; //  152  128  104   72
46
-	const TYPE_02 =  2; //  272  224  176  128
47
-	const TYPE_03 =  3; //  440  352  272  208
48
-	const TYPE_04 =  4; //  640  512  384  288
49
-	const TYPE_05 =  5; //  864  688  496  368
50
-	const TYPE_06 =  6; // 1088  864  608  480
51
-	const TYPE_07 =  7; // 1248  992  704  528
52
-	const TYPE_08 =  8; // 1552 1232  880  688
53
-	const TYPE_09 =  9; // 1856 1456 1056  800
45
+	const TYPE_01 = 1; //  152  128  104   72
46
+	const TYPE_02 = 2; //  272  224  176  128
47
+	const TYPE_03 = 3; //  440  352  272  208
48
+	const TYPE_04 = 4; //  640  512  384  288
49
+	const TYPE_05 = 5; //  864  688  496  368
50
+	const TYPE_06 = 6; // 1088  864  608  480
51
+	const TYPE_07 = 7; // 1248  992  704  528
52
+	const TYPE_08 = 8; // 1552 1232  880  688
53
+	const TYPE_09 = 9; // 1856 1456 1056  800
54 54
 	const TYPE_10 = 10; // 2192 1728 1232  976
55 55
 
56 56
 	/**
@@ -201,9 +201,9 @@  discard block
 block discarded – undo
201 201
 			$lostPoint = 0;
202 202
 			$darkCount = 0;
203 203
 
204
-			$range1 = range(0, $this->pixelCount-1);
205
-			$range2 = range(0, $this->pixelCount-2);
206
-			$range3 = range(0, $this->pixelCount-7);
204
+			$range1 = range(0, $this->pixelCount - 1);
205
+			$range2 = range(0, $this->pixelCount - 2);
206
+			$range3 = range(0, $this->pixelCount - 7);
207 207
 			$range4 = range(-1, 1);
208 208
 
209 209
 			// LEVEL1
@@ -240,9 +240,9 @@  discard block
 block discarded – undo
240 240
 					$count = 0;
241 241
 
242 242
 					if(
243
-						   $this->matrix[$row    ][$col    ]
244
-						|| $this->matrix[$row    ][$col + 1]
245
-						|| $this->matrix[$row + 1][$col    ]
243
+						   $this->matrix[$row][$col]
244
+						|| $this->matrix[$row][$col + 1]
245
+						|| $this->matrix[$row + 1][$col]
246 246
 						|| $this->matrix[$row + 1][$col + 1]
247 247
 					){
248 248
 						$count++;
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
 			foreach($range1 as $row){
259 259
 				foreach($range3 as $col){
260 260
 					if(
261
-						    $this->matrix[$row][$col    ]
261
+						    $this->matrix[$row][$col]
262 262
 						&& !$this->matrix[$row][$col + 1]
263 263
 						&&  $this->matrix[$row][$col + 2]
264 264
 						&&  $this->matrix[$row][$col + 3]
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
 			foreach($range1 as $col){
275 275
 				foreach($range3 as $row){
276 276
 					if(
277
-						    $this->matrix[$row    ][$col]
277
+						    $this->matrix[$row][$col]
278 278
 						&& !$this->matrix[$row + 1][$col]
279 279
 						&&  $this->matrix[$row + 2][$col]
280 280
 						&&  $this->matrix[$row + 3][$col]
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 			$a = (int)floor($i / 3);
321 321
 			$b = $i % 3 + $this->pixelCount - 8 - 3;
322 322
 
323
-			$this->matrix[$a][$b] = $this->matrix[$b][$a] = !$test && (($bits >> $i) & 1) === 1;
323
+			$this->matrix[$a][$b] = $this->matrix[$b][$a] = !$test && (($bits >> $i)&1) === 1;
324 324
 		}
325 325
 
326 326
 	}
@@ -331,13 +331,13 @@  discard block
 block discarded – undo
331 331
 	 */
332 332
 	protected function setTypeInfo($test, $pattern){
333 333
 		$this->setPattern();
334
-		$bits = Util::getBCHTypeInfo(($this->errorCorrectLevel << 3) | $pattern);
334
+		$bits = Util::getBCHTypeInfo(($this->errorCorrectLevel << 3)|$pattern);
335 335
 
336 336
 		for($i = 0; $i < 15; $i++){
337
-			$mod = !$test && (($bits >> $i) & 1) === 1;
337
+			$mod = !$test && (($bits >> $i)&1) === 1;
338 338
 
339 339
 			switch(true){
340
-				case $i < 6: $this->matrix[$i    ][8] = $mod; break;
340
+				case $i < 6: $this->matrix[$i][8] = $mod; break;
341 341
 				case $i < 8: $this->matrix[$i + 1][8] = $mod; break;
342 342
 				default:
343 343
 					$this->matrix[$this->pixelCount - 15 + $i][8] = $mod;
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 
346 346
 			switch(true){
347 347
 				case $i < 8: $this->matrix[8][$this->pixelCount - $i - 1] = $mod; break;
348
-				case $i < 9: $this->matrix[8][           15 + 1 - $i - 1] = $mod; break;
348
+				case $i < 9: $this->matrix[8][15 + 1 - $i - 1] = $mod; break;
349 349
 				default:
350 350
 					$this->matrix[8][15 - $i - 1] = $mod;
351 351
 			}
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
 
428 428
 			foreach($dcdata[$key] as $i => &$_dcdata){
429 429
 				$bdata = $this->bitBuffer->buffer;
430
-				$_dcdata = 0xff & $bdata[$i + $offset];
430
+				$_dcdata = 0xff&$bdata[$i + $offset];
431 431
 			}
432 432
 
433 433
 			$offset += $rsBlockDataCount;
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
 						$dark = false;
503 503
 
504 504
 						if($byteIndex < $dataCount){
505
-							$dark = (($data[$byteIndex] >> $bitIndex) & 1) === 1;
505
+							$dark = (($data[$byteIndex] >> $bitIndex)&1) === 1;
506 506
 						}
507 507
 
508 508
 						$a = $row + $_col;
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
 						$this->matrix[$posI + $row][$posJ + $col] =
585 585
 							   $row === -2 || $row === 2
586 586
 							|| $col === -2 || $col === 2
587
-							||($row ===  0 && $col === 0);
587
+							||($row === 0 && $col === 0);
588 588
 					}
589 589
 				}
590 590
 			}
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
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	/**
34 34
 	 * @param \chillerlan\QRCode\BitBuffer $buffer
35 35
 	 */
36
-	public function write(BitBuffer &$buffer){
36
+	public function write(BitBuffer&$buffer){
37 37
 		$i = 0;
38 38
 
39 39
 		while($i + 2 < $this->dataLength){
Please login to merge, or discard this patch.
src/Data/QRDataInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	/**
23 23
 	 * @param \chillerlan\QRCode\BitBuffer $buffer
24 24
 	 */
25
-	public function write(BitBuffer &$buffer);
25
+	public function write(BitBuffer&$buffer);
26 26
 
27 27
 	/**
28 28
 	 * @param $type
Please login to merge, or discard this patch.
src/Output/QRImage.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 		$this->options->pixelSize = max(1, min(25, (int)$this->options->pixelSize));
39 39
 		$this->options->marginSize = max(0, min(25, (int)$this->options->marginSize));
40 40
 
41
-		foreach(['fgRed', 'fgGreen', 'fgBlue', 'bgRed', 'bgGreen', 'bgBlue',] as $val){
41
+		foreach(['fgRed', 'fgGreen', 'fgBlue', 'bgRed', 'bgGreen', 'bgBlue', ] as $val){
42 42
 			$this->options->{$val} = max(0, min(255, (int)$this->options->{$val}));
43 43
 		}
44 44
 
@@ -78,8 +78,8 @@  discard block
 block discarded – undo
78 78
 			for($c = 0; $c < $this->pixelCount; $c++){
79 79
 				if($this->matrix[$r][$c]){
80 80
 					imagefilledrectangle($image,
81
-						$this->options->marginSize +  $c      * $this->options->pixelSize,
82
-						$this->options->marginSize +  $r      * $this->options->pixelSize,
81
+						$this->options->marginSize + $c * $this->options->pixelSize,
82
+						$this->options->marginSize + $r * $this->options->pixelSize,
83 83
 						$this->options->marginSize + ($c + 1) * $this->options->pixelSize - 1,
84 84
 						$this->options->marginSize + ($r + 1) * $this->options->pixelSize - 1,
85 85
 						$foreground);
@@ -90,9 +90,9 @@  discard block
 block discarded – undo
90 90
 		ob_start();
91 91
 
92 92
 		switch($this->options->type){
93
-			case QRCode::OUTPUT_IMAGE_PNG: imagepng ($image, $this->options->cachefile, (int)$this->options->pngCompression); break;
93
+			case QRCode::OUTPUT_IMAGE_PNG: imagepng($image, $this->options->cachefile, (int)$this->options->pngCompression); break;
94 94
 			case QRCode::OUTPUT_IMAGE_JPG: imagejpeg($image, $this->options->cachefile, (int)$this->options->jpegQuality); break;
95
-			case QRCode::OUTPUT_IMAGE_GIF: imagegif ($image, $this->options->cachefile); break; /** Actually, it's pronounced "DJIFF". *hides* */
95
+			case QRCode::OUTPUT_IMAGE_GIF: imagegif($image, $this->options->cachefile); break; /** Actually, it's pronounced "DJIFF". *hides* */
96 96
 		}
97 97
 
98 98
 		$imageData = ob_get_contents();
Please login to merge, or discard this patch.
src/Polynomial.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 		}
77 77
 
78 78
 		for($i = 8; $i < 256; $i++){
79
-			$this->EXP_TABLE[$i] = $this->EXP_TABLE[$i - 4] ^ $this->EXP_TABLE[$i - 5] ^ $this->EXP_TABLE[$i - 6] ^ $this->EXP_TABLE[$i - 8];
79
+			$this->EXP_TABLE[$i] = $this->EXP_TABLE[$i - 4]^$this->EXP_TABLE[$i - 5]^$this->EXP_TABLE[$i - 6]^$this->EXP_TABLE[$i - 8];
80 80
 		}
81 81
 
82 82
 		for($i = 0; $i < 255; $i++){
Please login to merge, or discard this patch.
src/QRConst.php 1 patch
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -25,16 +25,16 @@  discard block
 block discarded – undo
25 25
 	];
26 26
 
27 27
 	const MAX_BITS = [
28
-		QRCode::TYPE_01 => [ 128,  152,   72,  104],
29
-		QRCode::TYPE_02 => [ 224,  272,  128,  176],
30
-		QRCode::TYPE_03 => [ 352,  440,  208,  272],
31
-		QRCode::TYPE_04 => [ 512,  640,  288,  384],
32
-		QRCode::TYPE_05 => [ 688,  864,  368,  496],
33
-		QRCode::TYPE_06 => [ 864, 1088,  480,  608],
34
-		QRCode::TYPE_07 => [ 992, 1248,  528,  704],
35
-		QRCode::TYPE_08 => [1232, 1552,  688,  880],
36
-		QRCode::TYPE_09 => [1456, 1856,  800, 1056],
37
-		QRCode::TYPE_10 => [1728, 2192,  976, 1232],
28
+		QRCode::TYPE_01 => [128, 152, 72, 104],
29
+		QRCode::TYPE_02 => [224, 272, 128, 176],
30
+		QRCode::TYPE_03 => [352, 440, 208, 272],
31
+		QRCode::TYPE_04 => [512, 640, 288, 384],
32
+		QRCode::TYPE_05 => [688, 864, 368, 496],
33
+		QRCode::TYPE_06 => [864, 1088, 480, 608],
34
+		QRCode::TYPE_07 => [992, 1248, 528, 704],
35
+		QRCode::TYPE_08 => [1232, 1552, 688, 880],
36
+		QRCode::TYPE_09 => [1456, 1856, 800, 1056],
37
+		QRCode::TYPE_10 => [1728, 2192, 976, 1232],
38 38
 	];
39 39
 
40 40
 	const MODE_NUMBER   = 1 << 0;
@@ -66,16 +66,16 @@  discard block
 block discarded – undo
66 66
 	const PAD1 = 0x11;
67 67
 
68 68
 	const MAX_LENGTH = [
69
-		[[ 41,  25,  17,  10], [ 34,  20,  14,   8], [ 27,  16,  11,   7], [ 17,  10,   7,   4]],
70
-		[[ 77,  47,  32,  20], [ 63,  38,  26,  16], [ 48,  29,  20,  12], [ 34,  20,  14,   8]],
71
-		[[127,  77,  53,  32], [101,  61,  42,  26], [ 77,  47,  32,  20], [ 58,  35,  24,  15]],
72
-		[[187, 114,  78,  48], [149,  90,  62,  38], [111,  67,  46,  28], [ 82,  50,  34,  21]],
73
-		[[255, 154, 106,  65], [202, 122,  84,  52], [144,  87,  60,  37], [106,  64,  44,  27]],
74
-		[[322, 195, 134,  82], [255, 154, 106,  65], [178, 108,  74,  45], [139,  84,  58,  36]],
75
-		[[370, 224, 154,  95], [293, 178, 122,  75], [207, 125,  86,  53], [154,  93,  64,  39]],
76
-		[[461, 279, 192, 118], [365, 221, 152,  93], [259, 157, 108,  66], [202, 122,  84,  52]],
77
-		[[552, 335, 230, 141], [432, 262, 180, 111], [312, 189, 130,  80], [235, 143,  98,  60]],
78
-		[[652, 395, 271, 167], [513, 311, 213, 131], [364, 221, 151,  93], [288, 174, 119,  74]],
69
+		[[41, 25, 17, 10], [34, 20, 14, 8], [27, 16, 11, 7], [17, 10, 7, 4]],
70
+		[[77, 47, 32, 20], [63, 38, 26, 16], [48, 29, 20, 12], [34, 20, 14, 8]],
71
+		[[127, 77, 53, 32], [101, 61, 42, 26], [77, 47, 32, 20], [58, 35, 24, 15]],
72
+		[[187, 114, 78, 48], [149, 90, 62, 38], [111, 67, 46, 28], [82, 50, 34, 21]],
73
+		[[255, 154, 106, 65], [202, 122, 84, 52], [144, 87, 60, 37], [106, 64, 44, 27]],
74
+		[[322, 195, 134, 82], [255, 154, 106, 65], [178, 108, 74, 45], [139, 84, 58, 36]],
75
+		[[370, 224, 154, 95], [293, 178, 122, 75], [207, 125, 86, 53], [154, 93, 64, 39]],
76
+		[[461, 279, 192, 118], [365, 221, 152, 93], [259, 157, 108, 66], [202, 122, 84, 52]],
77
+		[[552, 335, 230, 141], [432, 262, 180, 111], [312, 189, 130, 80], [235, 143, 98, 60]],
78
+		[[652, 395, 271, 167], [513, 311, 213, 131], [364, 221, 151, 93], [288, 174, 119, 74]],
79 79
 	];
80 80
 
81 81
 	const BLOCK_TABLE = [
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 		[1, 26, 19], // L
84 84
 		[1, 26, 16], // M
85 85
 		[1, 26, 13], // Q
86
-		[1, 26,  9], // H
86
+		[1, 26, 9], // H
87 87
 		// 2
88 88
 		[1, 44, 34],
89 89
 		[1, 44, 28],
@@ -96,14 +96,14 @@  discard block
 block discarded – undo
96 96
 		[2, 35, 13],
97 97
 		// 4
98 98
 		[1, 100, 80],
99
-		[2,  50, 32],
100
-		[2,  50, 24],
101
-		[4,  25,  9],
99
+		[2, 50, 32],
100
+		[2, 50, 24],
101
+		[4, 25, 9],
102 102
 		// 5
103 103
 		[1, 134, 108],
104
-		[2,  67,  43],
105
-		[2,  33,  15, 2, 34, 16],
106
-		[2,  33,  11, 2, 34, 12],
104
+		[2, 67, 43],
105
+		[2, 33, 15, 2, 34, 16],
106
+		[2, 33, 11, 2, 34, 12],
107 107
 		// 6
108 108
 		[2, 86, 68],
109 109
 		[4, 43, 27],
@@ -116,14 +116,14 @@  discard block
 block discarded – undo
116 116
 		[4, 39, 13, 1, 40, 14],
117 117
 		// 8
118 118
 		[2, 121, 97],
119
-		[2,  60, 38, 2, 61, 39],
120
-		[4,  40, 18, 2, 41, 19],
121
-		[4,  40, 14, 2, 41, 15],
119
+		[2, 60, 38, 2, 61, 39],
120
+		[4, 40, 18, 2, 41, 19],
121
+		[4, 40, 14, 2, 41, 15],
122 122
 		// 9
123 123
 		[2, 146, 116],
124
-		[3,  58,  36, 2, 59, 37],
125
-		[4,  36,  16, 4, 37, 17],
126
-		[4,  36,  12, 4, 37, 13],
124
+		[3, 58, 36, 2, 59, 37],
125
+		[4, 36, 16, 4, 37, 17],
126
+		[4, 36, 12, 4, 37, 13],
127 127
 		// 10
128 128
 		[2, 86, 68, 2, 87, 69],
129 129
 		[4, 69, 43, 1, 70, 44],
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
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	/**
34 34
 	 * @param \chillerlan\QRCode\BitBuffer $buffer
35 35
 	 */
36
-	public function write(BitBuffer &$buffer){
36
+	public function write(BitBuffer&$buffer){
37 37
 		$i = 0;
38 38
 
39 39
 		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
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	/**
34 34
 	 * @param \chillerlan\QRCode\BitBuffer $buffer
35 35
 	 */
36
-	public function write(BitBuffer &$buffer){
36
+	public function write(BitBuffer&$buffer){
37 37
 		$i = 0;
38 38
 
39 39
 		while($i + 2 < $this->dataLength){
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
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	/**
34 34
 	 * @param \chillerlan\QRCode\BitBuffer $buffer
35 35
 	 */
36
-	public function write(BitBuffer &$buffer){
36
+	public function write(BitBuffer&$buffer){
37 37
 		$i = 0;
38 38
 
39 39
 		while($i + 2 < $this->dataLength){
Please login to merge, or discard this patch.