| 1 | <?php |
||
| 25 | final class Sms |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | private $content; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | private $phoneNumber; |
||
| 36 | |||
| 37 | public function __construct(string $content, string $phoneNumber) |
||
| 42 | |||
| 43 | public function getPhoneNumber(): string |
||
| 47 | |||
| 48 | public function getContent(): string |
||
| 52 | } |
||
| 53 |