| 1 | <?php |
||
| 4 | class PhoneNumber extends AbstractButtons |
||
| 5 | { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $title; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $payload; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * PhoneNumber constructor. |
||
| 19 | * |
||
| 20 | * @param string $title |
||
| 21 | * @param string $payload |
||
| 22 | */ |
||
| 23 | public function __construct(string $title, string $payload) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function jsonSerialize(): array |
||
| 47 | } |
||
| 48 |