1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace BitWasp\Bitcoin\Script; |
||
6 | |||
7 | use BitWasp\Bitcoin\Collection\CollectionInterface; |
||
8 | use BitWasp\Buffertools\BufferInterface; |
||
9 | use BitWasp\Buffertools\SerializableInterface; |
||
10 | |||
11 | interface ScriptWitnessInterface extends CollectionInterface, SerializableInterface |
||
0 ignored issues
–
show
|
|||
12 | { |
||
13 | /** |
||
14 | * @return BufferInterface[] |
||
15 | */ |
||
16 | public function all(): array; |
||
17 | |||
18 | /** |
||
19 | * @param ScriptWitnessInterface $witness |
||
20 | * @return bool |
||
21 | */ |
||
22 | public function equals(ScriptWitnessInterface $witness): bool; |
||
23 | } |
||
24 |
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.