1 | <?php |
||
13 | final class SmsChannel implements Channel |
||
14 | { |
||
15 | public const NAME = 'sms'; |
||
16 | |||
17 | /** @var Texter */ |
||
18 | private $texter; |
||
19 | |||
20 | 5 | public function __construct(Texter $texter) |
|
24 | |||
25 | 2 | public function getName(): string |
|
29 | |||
30 | 4 | public function send(Notification $notification, Recipient $recipient): void |
|
49 | } |
||
50 |