Copied (not yet removed) findByName

This commit is contained in:
James Cole
2016-10-10 07:20:49 +02:00
parent 0ae9afd325
commit 717c1d080e
9 changed files with 77 additions and 18 deletions

View File

@@ -33,6 +33,14 @@ interface AccountRepositoryInterface
*/
public function count(array $types): int;
/**
* @param string $name
* @param array $types
*
* @return Account
*/
public function findByName(string $name, array $types): Account;
/**
* Moved here from account CRUD.
*