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