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\IdentityInfo;
6
7/**
8 * @author Wilhelm Zwertvaegher
9 */
10interface RetrieveIdentityInfo
11{
12    public function getIdentityInfoFromId(string $identityId): ?IdentityInfo;
13
14    public function getIdentityInfoFromUserId(string $userId): ?IdentityInfo;
15
16}