Completed
Push — master ( 68a797...460d12 )
by thomas
24:41
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/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/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/Script/Factory/ScriptCreator.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -171,6 +171,7 @@  discard block
 block discarded – undo
171 171
      * adds them to the script.
172 172
      *
173 173
      * @param int ...$opcodes
174
+     * @param integer[] $opcodes
174 175
      * @return $this
175 176
      */
176 177
     public function opcode(int ...$opcodes)
@@ -184,6 +185,7 @@  discard block
 block discarded – undo
184 185
      * push-data instructions to the script.
185 186
      *
186 187
      * @param BufferInterface ...$dataList
188
+     * @param BufferInterface[] $dataList
187 189
      * @return $this
188 190
      */
189 191
     public function data(BufferInterface ...$dataList)
Please login to merge, or discard this patch.
src/Key/Deterministic/HierarchicalKey.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@
 block discarded – undo
322 322
     }
323 323
 
324 324
     /**
325
-     * @param array|\stdClass|\Traversable $list
325
+     * @param integer[] $list
326 326
      * @return HierarchicalKey
327 327
      * @throws \Exception
328 328
      */
Please login to merge, or discard this patch.