1 | <?php |
||
12 | class AccountRepository extends BaseDoctrineRepository implements AccountRepositoryInterface |
||
13 | { |
||
14 | /** |
||
15 | * @see AccountRepositoryInterface::persist() |
||
16 | */ |
||
17 | public function persist(AccountInterface $account) |
||
24 | |||
25 | /** |
||
26 | * @see AccountRepositoryInterface::remove() |
||
27 | */ |
||
28 | public function remove(AccountInterface $account) |
||
35 | } |
||
36 |