1 | <?php |
||
10 | class AccountRepository implements AccountRepositoryInterface |
||
11 | { |
||
12 | /** |
||
13 | * @see AccountRepositoryInterface::persist() |
||
14 | */ |
||
15 | public function persist(AccountInterface $account) |
||
18 | |||
19 | /** |
||
20 | * @see AccountRepositoryInterface::remove() |
||
21 | */ |
||
22 | public function remove(AccountInterface $account) |
||
25 | } |
||
26 |