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\Port\Driven;
4
5use App\CollectionManagement\Domain\Model\UserSetCollection;
6
7interface UserSetRepository
8{
9    /**
10     * @param string $userId
11     * @param list<string> $externalIds
12     * @return UserSetCollection
13     */
14    public function findByUserAndExternalIds(string $userId, array $externalIds): UserSetCollection;
15}