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\Data; |
| 4 | |
| 5 | use App\Entity\Notification; |
| 6 | use App\Entity\NotificationLog; |
| 7 | use App\Service\Notification\Dispatcher\NotificationDispatchResult; |
| 8 | |
| 9 | /** |
| 10 | * @author Wilhelm Zwertvaegher |
| 11 | */ |
| 12 | interface NotificationLogServiceInterface |
| 13 | { |
| 14 | public function save(NotificationLog $notificationLog): void; |
| 15 | |
| 16 | public function createFromNotification(Notification $notification, NotificationDispatchResult $result): NotificationLog; |
| 17 | } |