Skip to content

Instantly share code, notes, and snippets.

View norkunas's full-sized avatar
👻
🇱🇹

Tomas Norkūnas norkunas

👻
🇱🇹
View GitHub Profile
@norkunas
norkunas / DoctrineChannel.php
Last active November 6, 2023 15:21
Simple user notifications with Symfony Notifier
<?php
declare(strict_types=1);
namespace App\Notifier\Channel\Doctrine;
use App\Message\DoctrineNotificationMessage;
use Symfony\Component\Messenger\MessageBusInterface;
use Symfony\Component\Notifier\Channel\ChannelInterface;
use Symfony\Component\Notifier\Notification\Notification;