Passed
Branch master (947605)
by smiley
03:06
created
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.
tests/Data/DataTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
 namespace chillerlan\QRCodeTest\Data;
12 12
 
13 13
 use chillerlan\QRCode\BitBuffer;
14
-use chillerlan\QRCode\QRConst;
15 14
 use chillerlan\QRCode\Data\AlphaNum;
16 15
 use chillerlan\QRCode\Data\Byte;
17 16
 use chillerlan\QRCode\Data\Kanji;
18 17
 use chillerlan\QRCode\Data\Number;
18
+use chillerlan\QRCode\QRConst;
19 19
 
20 20
 class DataTest extends \PHPUnit_Framework_TestCase{
21 21
 
Please login to merge, or discard this patch.
tests/QRCodeTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
 
12 12
 namespace chillerlan\QRCodeTest;
13 13
 
14
+use ReflectionClass;
14 15
 use chillerlan\QRCode\Output\QRString;
15 16
 use chillerlan\QRCode\QRCode;
16 17
 use chillerlan\QRCode\QRConst;
17 18
 use chillerlan\QRCode\QROptions;
18
-use ReflectionClass;
19 19
 
20 20
 class QRCodeTest extends \PHPUnit_Framework_TestCase{
21 21
 
Please login to merge, or discard this patch.