cleanups
[m6w6/pq-gateway] / lib / pq / Mapper / StorageInterface.php
index db16df52f7504f662e8b7e8117c7356d68ab2410..188318aa64d1f9816e309f2795e9135a23bb6f31 100644 (file)
@@ -4,12 +4,7 @@ namespace pq\Mapper;
 
 interface StorageInterface
 {
-       /**
-        * @return pq\Mapper\Mapper
-        */
-       function getMapper();
-       
        function find($where, $order = null, $limit = null, $offset = null);
        function delete($object);
-       function persist($object);
-}
\ No newline at end of file
+       function save($object);
+}