Completed
Push — master ( 9ff756...275bd9 )
by smiley
02:34
created
src/Output/QRString.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
  */
12 12
 
13 13
 namespace chillerlan\QRCode\Output;
14
-use chillerlan\QRCode\Data\QRCodeDataException;
15 14
 use chillerlan\QRCode\QRCode;
16 15
 
17 16
 /**
Please login to merge, or discard this patch.
src/QRCode.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 			foreach($range2 as $col){
292 292
 
293 293
 				if(
294
-					    $this->matrix[$row][$col    ]
294
+						$this->matrix[$row][$col    ]
295 295
 					&& !$this->matrix[$row][$col + 1]
296 296
 					&&  $this->matrix[$row][$col + 2]
297 297
 					&&  $this->matrix[$row][$col + 3]
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 			foreach($range2 as $row){
310 310
 
311 311
 				if(
312
-					    $this->matrix[$row    ][$col]
312
+						$this->matrix[$row    ][$col]
313 313
 					&& !$this->matrix[$row + 1][$col]
314 314
 					&&  $this->matrix[$row + 2][$col]
315 315
 					&&  $this->matrix[$row + 3][$col]
Please login to merge, or discard this patch.