Completed
Pull Request — master (#230)
by thomas
75:52 queued 05:35
created
src/Script/Factory/OutputScriptFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      * @param int $m
98 98
      * @param PublicKeyInterface[] $keys
99 99
      * @param bool|true $sort
100
-     * @return ScriptCreator|Script
100
+     * @return Script
101 101
      */
102 102
     public function multisig($m, array $keys = [], $sort = true)
103 103
     {
Please login to merge, or discard this patch.
src/Script/Factory/ScriptCreator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
     }
148 148
 
149 149
     /**
150
-     * @return ScriptInterface
150
+     * @return ScriptInterface|null
151 151
      */
152 152
     public function getScript()
153 153
     {
Please login to merge, or discard this patch.
src/Script/Script.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @return BufferInterface
36
+     * @return Buffer
37 37
      */
38 38
     public function getBuffer()
39 39
     {
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * Return a buffer containing the hash of this script.
63 63
      *
64
-     * @return BufferInterface
64
+     * @return Buffer
65 65
      */
66 66
     public function getScriptHash()
67 67
     {
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     }
70 70
 
71 71
     /**
72
-     * @param bool|true $accurate
72
+     * @param boolean $accurate
73 73
      * @return int
74 74
      */
75 75
     public function countSigOps($accurate = true)
Please login to merge, or discard this patch.
src/Address/Address.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 
80 80
     /**
81 81
      * @param PrivateKeyInterface $privKey
82
-     * @param BufferInterface $hash
82
+     * @param Buffer $hash
83 83
      * @param int $sigHashType
84 84
      * @return TransactionSignature
85 85
      */
Please login to merge, or discard this patch.
src/Block/BlockHeader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
     /**
68 68
      * @param string $mnemonic
69
-     * @return BufferInterface
69
+     * @return Buffer
70 70
      */
71 71
     public function mnemonicToEntropy($mnemonic)
72 72
     {
Please login to merge, or discard this patch.
src/Bloom/BloomFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@
 block discarded – undo
263 263
     }
264 264
 
265 265
     /**
266
-     * @param BufferInterface $data
266
+     * @param Buffer $data
267 267
      * @return $this
268 268
      */
269 269
     public function insertData(BufferInterface $data)
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
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
     /**
68 68
      * @param string $mnemonic
69
-     * @return BufferInterface
69
+     * @return Buffer
70 70
      */
71 71
     public function mnemonicToEntropy($mnemonic)
72 72
     {
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
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
     }
110 110
 
111 111
     /**
112
-     * @return BufferInterface
112
+     * @return Buffer
113 113
      */
114 114
     private function serialize()
115 115
     {
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     }
140 140
 
141 141
     /**
142
-     * @return BufferInterface
142
+     * @return Buffer
143 143
      */
144 144
     public function getBuffer()
145 145
     {
Please login to merge, or discard this patch.
src/Script/Interpreter/Stack.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     /**
37 37
      * @see \ArrayAccess::offsetSet()
38 38
      * @param int $offset
39
-     * @param BufferInterface $value
39
+     * @param \BitWasp\Buffertools\Buffer $value
40 40
      * @throws \InvalidArgumentException
41 41
      */
42 42
     public function offsetSet($offset, $value)
Please login to merge, or discard this patch.