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\Notification\Infrastructure\Renderer;
4
5use App\Notification\Domain\Model\Notification;
6use App\Notification\Infrastructure\Sender\NotificationSender;
7use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
8
9/**
10 * @author Wilhelm Zwertvaegher
11 */
12#[AutoconfigureTag('app.file_storage_provider')]
13interface NotificationRenderer
14{
15    public function render(Notification $notification, NotificationSender $sender): string;
16}