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