| 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 | 7 | public function from(string $phoneNumber) |
|
| 24 | |||
| 25 | 9 | public function getFrom(): ?string |
|
| 29 | |||
| 30 | 9 | public function to(string $phoneNumber) |
|
| 36 | |||
| 37 | 9 | public function getTo(): string |
|
| 41 | |||
| 42 | 9 | public function text(string $text) |
|
| 48 | |||
| 49 | 4 | public function getText(): string |
|
| 53 | } |
||
| 54 |