| 1 | <?php |
||
| 10 | abstract class DoctrineRepository extends EntityRepository implements RepositoryInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Save an entity. |
||
| 14 | * |
||
| 15 | * @param $entity |
||
| 16 | */ |
||
| 17 | public function save($entity) |
||
| 22 | /** |
||
| 23 | * Delete an entity. |
||
| 24 | * |
||
| 25 | * @param $entity |
||
| 26 | */ |
||
| 27 | public function delete($entity) |
||
| 32 | } |
||
| 33 |