Completed
Pull Request — master (#326)
by thomas
81:30 queued 09:37
created
src/Math/Math.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@  discard block
 block discarded – undo
19 19
 
20 20
     /**
21 21
      * @param \GMP $int
22
-     * @param \GMP $otherInt
23
-     * @return \GMP
22
+     * @param resource $otherInt
23
+     * @return resource
24 24
      */
25 25
     public function bitwiseOr(\GMP $int, \GMP $otherInt)
26 26
     {
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * result and the remainder
33 33
      *
34 34
      * @param \GMP $dividend
35
-     * @param \GMP $divisor
35
+     * @param resource $divisor
36 36
      * @return array
37 37
      */
38 38
     public function divQr(\GMP $dividend, \GMP $divisor)
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
     /**
80 80
      * @param \GMP $integer
81
-     * @return \GMP
81
+     * @return resource
82 82
      */
83 83
     public function getLow64(\GMP $integer)
84 84
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * @param \GMP $integer
93 93
      * @param bool $fNegative
94
-     * @return \GMP
94
+     * @return resource
95 95
      */
96 96
     public function encodeCompact(\GMP $integer, $fNegative)
97 97
     {
Please login to merge, or discard this patch.
src/Script/Interpreter/Number.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     /**
95 95
      * @param BufferInterface $buffer
96
-     * @return int
96
+     * @return string
97 97
      */
98 98
     private function parseBuffer(BufferInterface $buffer)
99 99
     {
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
     }
178 178
 
179 179
     /**
180
-     * @return \GMP
180
+     * @return resource
181 181
      */
182 182
     public function getGmp()
183 183
     {
Please login to merge, or discard this patch.