| 1 | <?php |
||
| 19 | class BtcFormat extends AbstractFormat |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string the name of the receiver. |
||
| 23 | */ |
||
| 24 | public $name; |
||
| 25 | /** |
||
| 26 | * @var string the message that describes the transaction. |
||
| 27 | */ |
||
| 28 | public $message; |
||
| 29 | /** |
||
| 30 | * @var string the Bitcoin address |
||
| 31 | */ |
||
| 32 | public $address; |
||
| 33 | /** |
||
| 34 | * @var string the payable amount |
||
| 35 | */ |
||
| 36 | public $amount; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritdoc |
||
| 40 | */ |
||
| 41 | public function getText(): string |
||
| 47 | } |
||
| 48 |