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