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