feat: web, webhook and telegram channel drivers

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BCrwHHnGCB5XH968Nxokqw
This commit is contained in:
nikita.hohlov
2026-09-04 07:18:37 -03:00
parent 1b03fe0796
commit 1b0a559e3c
11 changed files with 487 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Channels;
use App\Enums\ChannelType;
use Illuminate\Contracts\Container\Container;
final class ChannelRegistry
{
public function __construct(private readonly Container $container) {}
public function for(ChannelType $type): ChannelDriver
{
return match ($type) {
ChannelType::Web => $this->container->make(WebChannel::class),
ChannelType::Webhook => $this->container->make(WebhookChannel::class),
ChannelType::Telegram => $this->container->make(TelegramChannel::class),
};
}
}