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\CollectionManagement\Domain\Service;
4
5use App\Shared\Domain\Model\EntityId;
6use App\User\Domain\Model\User;
7
8/**
9 * @author Wilhelm Zwertvaegher
10 */
11interface RetrieveUserId
12{
13    public function getUserId(EntityId $identityId): ?EntityId;
14}