Completed
Pull Request — master (#359)
by Ruben de
14:27
created
src/Transaction/Factory/TxBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     }
112 112
 
113 113
     /**
114
-     * @param BufferInterface|string $hashPrevOut - hex or BufferInterface
114
+     * @param BufferInterface $hashPrevOut - hex or BufferInterface
115 115
      * @param int $nPrevOut
116 116
      * @param Script|null $script
117 117
      * @param int $nSequence
Please login to merge, or discard this patch.
src/PaymentProtocol/RequestSigner.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,8 +259,8 @@
 block discarded – undo
259 259
     }
260 260
 
261 261
     /**
262
-     * @param $certData
263
-     * @return array
262
+     * @param string $certData
263
+     * @return string
264 264
      */
265 265
     private function der2pem($certData)
266 266
     {
Please login to merge, or discard this patch.
src/Transaction/Transaction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@
 block discarded – undo
221 221
     }
222 222
 
223 223
     /**
224
-     * @return int|string
224
+     * @return string
225 225
      */
226 226
     public function getValueOut()
227 227
     {
Please login to merge, or discard this patch.
src/Crypto/EcAdapter/Impl/PhpEcc/Signature/CompactSignature.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @return int
70
+     * @return double
71 71
      */
72 72
     public function getFlags()
73 73
     {
Please login to merge, or discard this patch.
src/Crypto/EcAdapter/Impl/Secp256k1/Signature/CompactSignature.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     /**
77 77
      * @param int|string $sequence
78 78
      * @param bool $change
79
-     * @return int|string
79
+     * @return integer
80 80
      */
81 81
     public function getSequenceOffset($sequence, $change = false)
82 82
     {
Please login to merge, or discard this patch.
src/Crypto/EcAdapter/Impl/Secp256k1/Adapter/EcAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-     * @param \GMP $int
94
+     * @param resource $int
95 95
      * @param bool|false $compressed
96 96
      * @return PrivateKey
97 97
      */
Please login to merge, or discard this patch.
src/Key/Deterministic/ElectrumKey.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     /**
78 78
      * @param int $sequence
79 79
      * @param bool $change
80
-     * @return \GMP
80
+     * @return resource
81 81
      */
82 82
     public function getSequenceOffset($sequence, $change = false)
83 83
     {
Please login to merge, or discard this patch.
src/Chain/ProofOfWork.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     /**
78 78
      * @param int $sequence
79 79
      * @param bool $change
80
-     * @return \GMP
80
+     * @return resource
81 81
      */
82 82
     public function getSequenceOffset($sequence, $change = false)
83 83
     {
Please login to merge, or discard this patch.
src/Key/Deterministic/HierarchicalKey.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     /**
102 102
      * Get the fingerprint of the parent key. For master keys, this is 00000000.
103 103
      *
104
-     * @return string
104
+     * @return integer
105 105
      */
106 106
     public function getFingerprint()
107 107
     {
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
     /**
116 116
      * Return the fingerprint to be used for child keys.
117
-     * @return int
117
+     * @return string
118 118
      */
119 119
     public function getChildFingerprint()
120 120
     {
Please login to merge, or discard this patch.