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