Passed
Branch master (947605)
by smiley
03:06
created
src/QRCode.php 1 patch
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.
src/Data/QRDataInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,11 +21,12 @@
 block discarded – undo
21 21
 
22 22
 	/**
23 23
 	 * @param \chillerlan\QRCode\BitBuffer $buffer
24
+	 * @return void
24 25
 	 */
25 26
 	public function write(BitBuffer &$buffer);
26 27
 
27 28
 	/**
28
-	 * @param $type
29
+	 * @param integer $type
29 30
 	 *
30 31
 	 * @return int
31 32
 	 * @throws \chillerlan\QRCode\Data\QRCodeDataException
Please login to merge, or discard this patch.
src/Output/QRImage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 	}
60 60
 
61 61
 	/**
62
-	 * @return mixed
62
+	 * @return string
63 63
 	 * @throws \chillerlan\QRCode\Output\QRCodeOutputException
64 64
 	 */
65 65
 	public function dump(){
Please login to merge, or discard this patch.