data mapper POC
[m6w6/pq-gateway] / lib / pq / Mapper / StorageInterface.php
1 <?php
2
3 namespace pq\Mapper;
4
5 interface StorageInterface
6 {
7 /**
8 * @return pq\Mapper\Mapper
9 */
10 function getMapper();
11
12 function find($where, $order = null, $limit = null, $offset = null);
13 function delete($object);
14 function persist($object);
15 }