Expand test code for create export routine.

This commit is contained in:
James Cole
2018-03-30 16:44:33 +02:00
parent 15f8cd49d3
commit 5c4d7734ac
5 changed files with 206 additions and 18 deletions

View File

@@ -103,11 +103,17 @@ interface UserRepositoryInterface
/**
* @param int $userId
*
* @deprecated
* @return User
*/
public function find(int $userId): User;
/**
* @param int $userId
* @return User|null
*/
public function findNull(int $userId): ?User;
/**
* @param string $email
*