1 | <?php |
||
8 | class AccountRepository extends EntityRepository |
||
9 | { |
||
10 | public function add(Account $entity): void |
||
14 | |||
15 | /** |
||
16 | * Returns total number of accounts |
||
17 | * |
||
18 | * @return int |
||
19 | */ |
||
20 | public function getAccountsCount(): int |
||
27 | |||
28 | /** |
||
29 | * Returns number of accounts with linked Point.im profile |
||
30 | * |
||
31 | * @return int |
||
32 | */ |
||
33 | public function getLinkedAccountsCount(): int |
||
41 | } |