Completed
Push — master ( d83eb8...f68d68 )
by thomas
74:42 queued 72:00
created
src/Script/Classifier/OutputClassifier.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     }
116 116
 
117 117
     /**
118
-     * @param array $decoded
118
+     * @param Operation[] $decoded
119 119
      * @return bool
120 120
      */
121 121
     private function decodeP2SH(array $decoded)
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     /**
241 241
      * @param ScriptInterface $script
242 242
      * @param int $limit
243
-     * @param array $decoded
243
+     * @param Operation[] $decoded
244 244
      * @return BufferInterface|false
245 245
      */
246 246
     private function decodeWithLimit(ScriptInterface $script, $limit, array $decoded)
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
     }
324 324
 
325 325
     /**
326
-     * @param array $decoded
326
+     * @param Operation[] $decoded
327 327
      * @return bool|BufferInterface
328 328
      */
329 329
     private function decodeWitnessCoinbaseCommitment(array $decoded)
Please login to merge, or discard this patch.
src/Signature/TransactionSignatureFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 class TransactionSignatureFactory
11 11
 {
12 12
     /**
13
-     * @param \BitWasp\Buffertools\BufferInterface|string $string
13
+     * @param \BitWasp\Buffertools\BufferInterface $string
14 14
      * @param EcAdapterInterface $ecAdapter
15 15
      * @return TransactionSignatureInterface
16 16
      */
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
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
      * @param OutputData $outputData
268 268
      * @param array $stack
269 269
      * @param $sigVersion
270
-     * @return mixed
270
+     * @return string
271 271
      */
272 272
     public function extractFromValues(OutputData $outputData, array $stack, $sigVersion)
273 273
     {
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
     }
329 329
 
330 330
     /**
331
-     * @param array $chunks
331
+     * @param BufferInterface[] $chunks
332 332
      * @param SignData $signData
333 333
      * @return Script|ScriptInterface|null
334 334
      */
Please login to merge, or discard this patch.