feat: add webhook placeholder to Test notification
Add webhook case to the Test notification's via() method to prepare for future WebhookChannel implementation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
22ef6c8c9a
commit
22153c419d
1 changed files with 1 additions and 0 deletions
|
|
@ -36,6 +36,7 @@ public function via(object $notifiable): array
|
||||||
'telegram' => [TelegramChannel::class],
|
'telegram' => [TelegramChannel::class],
|
||||||
'slack' => [SlackChannel::class],
|
'slack' => [SlackChannel::class],
|
||||||
'pushover' => [PushoverChannel::class],
|
'pushover' => [PushoverChannel::class],
|
||||||
|
'webhook' => [], // WebhookChannel will be implemented later
|
||||||
default => [],
|
default => [],
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue