| 1 | <?php |
||
| 11 | class Notifier |
||
| 12 | { |
||
| 13 | /** @var Channels */ |
||
| 14 | protected $channels; |
||
| 15 | |||
| 16 | 3 | public function __construct(Channels $channels) |
|
| 20 | |||
| 21 | 1 | public function send(Notification $notification, Recipients $recipients): void |
|
| 29 | |||
| 30 | 2 | public function sendVia(string $channelName, Notification $notification, Recipients $recipients): void |
|
| 38 | } |
||
| 39 |