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\Domain\Service; |
| 4 | |
| 5 | use App\Notification\Domain\Model\Notification; |
| 6 | use App\Notification\Domain\Model\NotificationLog; |
| 7 | use App\Notification\Domain\Model\NotificationDispatchResult; |
| 8 | use App\Notification\Domain\Model\NotificationStatus; |
| 9 | |
| 10 | /** |
| 11 | * @author Wilhelm Zwertvaegher |
| 12 | */ |
| 13 | interface NotificationLogService |
| 14 | { |
| 15 | public function createFromNotification(Notification $notification, NotificationDispatchResult $result): NotificationLog; |
| 16 | } |