Code Coverage
 
Lines
Branches
Paths
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace App\Service\Notification\Renderer;
4
5use App\Entity\Notification;
6use App\Service\Notification\Sender\NotificationSenderInterface;
7use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
8
9/**
10 * @author Wilhelm Zwertvaegher
11 */
12#[AutoconfigureTag('app.notification_renderer')]
13interface NotificationRendererInterface
14{
15    public function render(Notification $notification, NotificationSenderInterface $sender): string;
16}