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