Add support methods.

This commit is contained in:
James Cole
2018-03-19 08:17:31 +01:00
parent 40787bc29a
commit 552a8e130c
2 changed files with 29 additions and 2 deletions

View File

@@ -128,6 +128,16 @@ interface AccountRepositoryInterface
*/
public function getCashAccount(): Account;
/**
* Return meta value for account. Null if not found.
*
* @param Account $account
* @param string $field
*
* @return null|string
*/
public function getMetaValue(Account $account, string $field): ?string;
/**
* @param Account $account
*