| 1 | <?php |
||
| 7 | class ReplyButton implements Button |
||
| 8 | { |
||
| 9 | private $label; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Get label. |
||
| 13 | * |
||
| 14 | * @return string |
||
| 15 | */ |
||
| 16 | 1 | public function getLabel(): string |
|
| 20 | |||
| 21 | /** |
||
| 22 | * Set label. |
||
| 23 | * |
||
| 24 | * @param string $label |
||
| 25 | * |
||
| 26 | * @return ReplyButton |
||
| 27 | */ |
||
| 28 | 1 | public function setLabel(string $label): ReplyButton |
|
| 34 | } |
||
| 35 |