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:
Andras Bacsai 2025-10-10 17:55:11 +02:00
parent 22ef6c8c9a
commit 22153c419d

View file

@ -36,6 +36,7 @@ public function via(object $notifiable): array
'telegram' => [TelegramChannel::class],
'slack' => [SlackChannel::class],
'pushover' => [PushoverChannel::class],
'webhook' => [], // WebhookChannel will be implemented later
default => [],
};
} else {