Completed
Push — master ( 73a6c4...cc9f4e )
by thomas
20:03
created
src/Key/Deterministic/HierarchicalKey.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@
 block discarded – undo
269 269
     }
270 270
 
271 271
     /**
272
-     * @param array|\stdClass|\Traversable $list
272
+     * @param integer[] $list
273 273
      * @return HierarchicalKey
274 274
      */
275 275
     public function deriveFromList($list)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,6 @@
 block discarded – undo
16 16
 use BitWasp\Bitcoin\Util\IntRange;
17 17
 use BitWasp\Buffertools\Buffer;
18 18
 use BitWasp\Buffertools\BufferInterface;
19
-use BitWasp\Buffertools\Buffertools;
20
-use BitWasp\Buffertools\Parser;
21 19
 
22 20
 class HierarchicalKey
23 21
 {
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.
src/Crypto/EcAdapter/Impl/Secp256k1/Serializer/Key/PublicKeySerializer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use BitWasp\Bitcoin\Crypto\EcAdapter\Serializer\Key\PublicKeySerializerInterface;
11 11
 use BitWasp\Buffertools\Buffer;
12 12
 use BitWasp\Buffertools\BufferInterface;
13
-use BitWasp\Buffertools\Parser;
14 13
 
15 14
 class PublicKeySerializer implements PublicKeySerializerInterface
16 15
 {
Please login to merge, or discard this patch.