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