Completed
Pull Request — master (#229)
by thomas
123:03 queued 47:24
created
src/Crypto/EcAdapter/Impl/PhpEcc/Adapter/EcAdapter.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -279,8 +279,8 @@  discard block
 block discarded – undo
279 279
     /**
280 280
      * Attempt to calculate the public key recovery param by trial and error
281 281
      *
282
-     * @param int|string     $r
283
-     * @param int|string     $s
282
+     * @param integer     $r
283
+     * @param integer     $s
284 284
      * @param Buffer $messageHash
285 285
      * @param PublicKey $publicKey
286 286
      * @return int
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
     }
350 350
 
351 351
     /**
352
-     * @param int|string $element
352
+     * @param string $element
353 353
      * @param bool $half
354 354
      * @return bool
355 355
      */
Please login to merge, or discard this patch.
src/Script/Interpreter/Stack.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     }
13 13
 
14 14
     /**
15
-     * @param mixed $value
15
+     * @param Buffer $value
16 16
      * @throws \InvalidArgumentException
17 17
      */
18 18
     private function typeCheck($value)
Please login to merge, or discard this patch.
src/Transaction/Factory/TxBuilder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     }
101 101
 
102 102
     /**
103
-     * @param Buffer|string $hashPrevOut
103
+     * @param Buffer $hashPrevOut
104 104
      * @param int $nPrevOut
105 105
      * @param Script|null $script
106 106
      * @param int $nSequence
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     }
135 135
 
136 136
     /**
137
-     * @param int|string $value
137
+     * @param integer $value
138 138
      * @param ScriptInterface $script
139 139
      * @return $this
140 140
      */
Please login to merge, or discard this patch.
src/Transaction/SignatureHash/Hasher.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      * can be used.
46 46
      *
47 47
      * @param ScriptInterface $txOutScript
48
-     * @param $inputToSign
48
+     * @param integer $inputToSign
49 49
      * @param int $sighashType
50 50
      * @return Buffer
51 51
      * @throws \Exception
Please login to merge, or discard this patch.