Skip to content

Instantly share code, notes, and snippets.

View sb8244's full-sized avatar

Stephen Bussey sb8244

View GitHub Profile
@sb8244
sb8244 / gist:8126020
Created December 25, 2013 19:11
Doctrine sample mapper to provide common operations
//FILE GenericMapperInterface.php
<?php
interface GenericMapperInterface
{
public function find($id);
public function findAll();
public function save($entity);
public function remove($entity);