Completed
Pull Request — master (#239)
by thomas
31:39 queued 14:06
created
src/Transaction/Factory/TxSignerContext.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     }
116 116
 
117 117
     /**
118
-     * @return array|\BitWasp\Bitcoin\Crypto\EcAdapter\Key\PublicKeyInterface[]
118
+     * @return PublicKeyInterface[]
119 119
      */
120 120
     public function getPublicKeys()
121 121
     {
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-     * @return array
126
+     * @return TransactionSignatureInterface[]
127 127
      */
128 128
     public function getSignatures()
129 129
     {
Please login to merge, or discard this patch.
src/Transaction/Mutator/WitnessCollectionMutator.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-     * @param int|string $start
64
-     * @param int|string $length
63
+     * @param integer $start
64
+     * @param integer $length
65 65
      * @return $this
66 66
      */
67 67
     public function slice($start, $length)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 namespace BitWasp\Bitcoin\Transaction\Mutator;
4 4
 
5 5
 use BitWasp\Bitcoin\Collection\MutableCollection;
6
-use BitWasp\Bitcoin\Collection\Transaction\TransactionInputCollection;
7 6
 use BitWasp\Bitcoin\Collection\Transaction\TransactionWitnessCollection;
8 7
 use BitWasp\Bitcoin\Script\ScriptWitnessInterface;
9
-use BitWasp\Bitcoin\Transaction\TransactionInputInterface;
10 8
 
11 9
 class WitnessCollectionMutator extends MutableCollection
12 10
 {
Please login to merge, or discard this patch.