| 1 | <?php |
||
| 10 | class TestManager implements ManagerInterface |
||
| 11 | { |
||
| 12 | public function __construct(EntityManager $manager, ObjectRepository $repository) |
||
| 13 | { |
||
| 14 | } |
||
| 15 | |||
| 16 | public function find($id) |
||
| 17 | { |
||
| 18 | } |
||
| 19 | |||
| 20 | public function findAll() |
||
| 21 | { |
||
| 22 | } |
||
| 23 | |||
| 24 | public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) |
||
| 25 | { |
||
| 26 | } |
||
| 27 | |||
| 28 | public function findOneBy(array $criteria) |
||
| 29 | { |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getClassName() |
||
| 33 | { |
||
| 34 | } |
||
| 35 | |||
| 36 | public function create() |
||
| 37 | { |
||
| 38 | // TODO: Implement create() method. |
||
| 39 | } |
||
| 40 | |||
| 41 | public function delete($entity) |
||
| 42 | { |
||
| 43 | // TODO: Implement delete() method. |
||
| 44 | } |
||
| 45 | |||
| 46 | public function save($entity) |
||
| 47 | { |
||
| 48 | // TODO: Implement save() method. |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return EntityRepository |
||
| 53 | */ |
||
| 54 | public function getRepository() |
||
| 55 | { |
||
| 56 | // TODO: Implement getRepository() method. |
||
| 57 | } |
||
| 58 | } |
||
| 59 |