mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-20 08:30:06 +00:00
First attempt, trying to build an import stuff routine.
This commit is contained in:
@@ -46,11 +46,23 @@ interface AccountRepositoryInterface
|
||||
public function find($accountId);
|
||||
|
||||
/**
|
||||
* @param $name
|
||||
*
|
||||
* @param $type
|
||||
* @return mixed
|
||||
*/
|
||||
public function findByName($name);
|
||||
public function findAccountType($type);
|
||||
|
||||
/**
|
||||
* @param $name
|
||||
* @param \AccountType $type
|
||||
* @return mixed
|
||||
*/
|
||||
public function findByName($name, \AccountType $type = null);
|
||||
|
||||
/**
|
||||
* @param $name
|
||||
* @return mixed
|
||||
*/
|
||||
public function findByNameAny($name);
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
|
||||
Reference in New Issue
Block a user