Completed
Push — master ( 102ef4...1ff5c6 )
by smiley
02:47
created
src/Output/QRImage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,8 @@
 block discarded – undo
63 63
 			foreach($row as $c => $pixel){
64 64
 				if($pixel){
65 65
 					imagefilledrectangle($image,
66
-						$this->options->marginSize +  $c      * $this->options->pixelSize,
67
-						$this->options->marginSize +  $r      * $this->options->pixelSize,
66
+						$this->options->marginSize + $c * $this->options->pixelSize,
67
+						$this->options->marginSize + $r * $this->options->pixelSize,
68 68
 						$this->options->marginSize + ($c + 1) * $this->options->pixelSize - 1,
69 69
 						$this->options->marginSize + ($r + 1) * $this->options->pixelSize - 1,
70 70
 						$foreground);
Please login to merge, or discard this patch.
src/Output/QROutputAbstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 			$this->options = new $this->optionsInterface;
54 54
 		}
55 55
 
56
-		if(is_array($this->types) && !in_array($this->options->type, $this->types , true)){
56
+		if(is_array($this->types) && !in_array($this->options->type, $this->types, true)){
57 57
 			throw new QRCodeOutputException('Invalid output type!');
58 58
 		}
59 59
 
Please login to merge, or discard this patch.