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\Sender;
4
5use App\Entity\Notification;
6use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
7
8/**
9 * @author Wilhelm Zwertvaegher
10 */
11#[AutoconfigureTag('app.notification_sender')]
12interface NotificationSenderInterface
13{
14    public function supports(Notification $notification): bool;
15
16    public function send(Notification $notification): NotificationSenderResult;
17
18    public function getName(): string;
19}