Completed
Pull Request — 0.0.35 (#659)
by thomas
30:11 queued 21:19
created
src/Transaction/TransactionInput.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     }
103 103
 
104 104
     /**
105
-     * @return int
105
+     * @return boolean
106 106
      */
107 107
     public function isSequenceLockDisabled()
108 108
     {
Please login to merge, or discard this patch.
src/Transaction/Factory/InputSigner.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -567,8 +567,8 @@
 block discarded – undo
567 567
      * Pure function to produce a signature hash for a given $scriptCode, $sigHashType, $sigVersion.
568 568
      *
569 569
      * @param ScriptInterface $scriptCode
570
-     * @param $sigHashType
571
-     * @param $sigVersion
570
+     * @param integer $sigHashType
571
+     * @param integer $sigVersion
572 572
      * @return BufferInterface
573 573
      * @throws SignerException
574 574
      */
Please login to merge, or discard this patch.
src/Key/Deterministic/HierarchicalKey.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     /**
114 114
      * Get the fingerprint of the parent key. For master keys, this is 00000000.
115 115
      *
116
-     * @return string
116
+     * @return integer
117 117
      */
118 118
     public function getFingerprint()
119 119
     {
@@ -229,8 +229,8 @@  discard block
 block discarded – undo
229 229
     }
230 230
 
231 231
     /**
232
-     * @param $nextDepth
233
-     * @param $sequence
232
+     * @param integer $nextDepth
233
+     * @param integer $sequence
234 234
      * @param BufferInterface $chainCode
235 235
      * @param KeyInterface $key
236 236
      * @return HierarchicalKey
Please login to merge, or discard this patch.
src/Key/PrivateKeyFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @param BufferInterface|string $hex
50
+     * @param BufferInterface $hex
51 51
      * @param bool $compressed
52 52
      * @param EcAdapterInterface|null $ecAdapter
53 53
      * @return PrivateKeyInterface
Please login to merge, or discard this patch.