Completed
Push — master ( 226900...81ddff )
by thomas
18:25
created
src/Transaction/Factory/TxBuilder.php 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use BitWasp\Bitcoin\Address\AddressInterface;
8 8
 use BitWasp\Bitcoin\Locktime;
9 9
 use BitWasp\Bitcoin\Script\Script;
10
-use BitWasp\Bitcoin\Script\ScriptFactory;
11 10
 use BitWasp\Bitcoin\Script\ScriptInterface;
12 11
 use BitWasp\Bitcoin\Script\ScriptWitnessInterface;
13 12
 use BitWasp\Bitcoin\Transaction\Bip69\Bip69;
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.
src/Key/Deterministic/MultisigHD.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     private $sort;
44 44
 
45 45
     /**
46
-     * @param int|string $m
46
+     * @param integer $m
47 47
      * @param string $path
48 48
      * @param array $keys
49 49
      * @param HierarchicalKeySequence $sequences
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     /**
136 136
      * Derive each HK child and produce a new MultisigHD object
137 137
      *
138
-     * @param int|string $sequence
138
+     * @param integer $sequence
139 139
      * @return MultisigHD
140 140
      */
141 141
     public function deriveChild(int $sequence): MultisigHD
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
     }
162 162
 
163 163
     /**
164
-     * @param array|\stdClass|\Traversable $list
164
+     * @param integer[] $list
165 165
      * @return MultisigHD
166 166
      */
167 167
     public function deriveFromList($list): MultisigHD
Please login to merge, or discard this patch.
src/Script/Classifier/OutputClassifier.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -415,7 +415,7 @@
 block discarded – undo
415 415
     }
416 416
 
417 417
     /**
418
-     * @param array $decoded
418
+     * @param Operation[] $decoded
419 419
      * @param null $solution
420 420
      * @return string
421 421
      */
Please login to merge, or discard this patch.
src/Script/Path/LogicOpNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * MASTNode constructor.
26
-     * @param self|null $parent
26
+     * @param null|\self $parent
27 27
      * @param bool|null $value
28 28
      */
29 29
     public function __construct(self $parent = null, $value = null)
Please login to merge, or discard this patch.
src/Script/Script.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
-     * @param bool|true $accurate
105
+     * @param boolean $accurate
106 106
      * @return int
107 107
      */
108 108
     public function countSigOps(bool $accurate = true): int
Please login to merge, or discard this patch.
src/Transaction/Factory/Checksig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
     }
139 139
 
140 140
     /**
141
-     * @return array|BufferInterface|BufferInterface[]
141
+     * @return BufferInterface
142 142
      */
143 143
     public function getSolution()
144 144
     {
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
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
     }
359 359
 
360 360
     /**
361
-     * @param array $decoded
361
+     * @param Operation[] $decoded
362 362
      * @param null $solution
363 363
      * @return null|TimeLock|Checksig
364 364
      */
@@ -1111,7 +1111,7 @@  discard block
 block discarded – undo
1111 1111
     }
1112 1112
 
1113 1113
     /**
1114
-     * @return Checksig[]|Conditional[]|mixed
1114
+     * @return Conditional[]
1115 1115
      */
1116 1116
     public function getSteps()
1117 1117
     {
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
@@ -235,7 +235,7 @@
 block discarded – undo
235 235
     }
236 236
 
237 237
     /**
238
-     * @return int
238
+     * @return string
239 239
      */
240 240
     public function getValueOut()
241 241
     {
Please login to merge, or discard this patch.