cleanups
[m6w6/pq-gateway] / lib / pq / Mapper / StorageInterface.php
1 <?php
2
3 namespace pq\Mapper;
4
5 interface StorageInterface
6 {
7 function find($where, $order = null, $limit = null, $offset = null);
8 function delete($object);
9 function save($object);
10 }