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\Port\Driven;
4
5use App\Notification\Domain\Model\Notification;
6use App\Notification\Domain\Model\NotificationDispatchResult;
7
8/**
9 * @author Wilhelm Zwertvaegher
10 */
11interface NotificationDispatcher
12{
13    /**
14     * @param Notification $notification
15     * @return array<NotificationDispatchResult>
16     */
17    public function dispatch(Notification $notification): array;
18}