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 MyLegoCollection\SharedContracts\Message; |
| 7 | |
| 8 | /** |
| 9 | * @author Wilhelm Zwertvaegher |
| 10 | */ |
| 11 | interface NotificationFactory |
| 12 | { |
| 13 | public function createNotification(Message $message): Notification; |
| 14 | |
| 15 | } |