1 | <?php |
||
7 | class SmsMessage |
||
8 | { |
||
9 | /** @var string */ |
||
10 | protected $from; |
||
11 | |||
12 | /** @var string */ |
||
13 | protected $to = ''; |
||
14 | |||
15 | /** @var string */ |
||
16 | protected $text = ''; |
||
17 | |||
18 | 6 | public function from(string $phoneNumber) |
|
24 | |||
25 | 6 | public function getFrom(): ?string |
|
29 | |||
30 | 6 | public function to(string $phoneNumber) |
|
36 | |||
37 | 6 | public function getTo(): string |
|
41 | |||
42 | 6 | public function text(string $text) |
|
48 | |||
49 | 2 | public function getText(): string |
|
53 | } |
||
54 |