| 1 | <?php |
||
| 13 | final class SmsChannel implements Channel |
||
| 14 | { |
||
| 15 | public const NAME = 'sms'; |
||
| 16 | |||
| 17 | /** @var Texter */ |
||
| 18 | private $texter; |
||
| 19 | |||
| 20 | /** @var string|null */ |
||
| 21 | private $defaultSenderPhoneNumber; |
||
| 22 | |||
| 23 | 7 | public function __construct(Texter $texter, string $defaultSenderPhoneNumber = null) |
|
| 28 | |||
| 29 | 4 | public function getName(): string |
|
| 33 | |||
| 34 | 5 | public function send(Notification $notification, Recipient $recipient): void |
|
| 57 | } |
||
| 58 |