Completed
Push — master ( a2dcd1...c14602 )
by thomas
28:49 queued 14:03
created
src/Buffertools/Parser.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     /**
27 27
      * Instantiate class, optionally taking Buffer or HEX.
28 28
      *
29
-     * @param null|string|BufferInterface $input
29
+     * @param Buffer $input
30 30
      * @param MathAdapterInterface|null $math
31 31
      */
32 32
     public function __construct($input = null, MathAdapterInterface $math = null)
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      * Write $data as $bytes bytes. Can be flipped if needed.
84 84
      *
85 85
      * @param  integer $bytes
86
-     * @param  $data
86
+     * @param  BufferInterface $data
87 87
      * @param  bool $flipBytes
88 88
      * @return $this
89 89
      */
Please login to merge, or discard this patch.
src/Buffertools/Types/VarInt.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-     * @param \GMP $integer
29
+     * @param resource $integer
30 30
      * @return array
31 31
      */
32 32
     public function solveWriteSize(\GMP $integer)
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @param \GMP $givenPrefix
50
+     * @param resource $givenPrefix
51 51
      * @return UintInterface[]
52 52
      * @throws \InvalidArgumentException
53 53
      */
Please login to merge, or discard this patch.
src/Buffertools/Buffer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
     }
168 168
 
169 169
     /**
170
-     * @return \GMP
170
+     * @return resource
171 171
      */
172 172
     public function getGmp()
173 173
     {
Please login to merge, or discard this patch.