*/ interface ObjectPersisterInterface { /** * Insert one object into the type * The object will be transformed to an elastica document * * @param object $object */ function insertOne($object); /** * Replaces one object in the type * * @param object $object **/ function replaceOne($object); /** * Deletes one object in the type * * @param object $object **/ function deleteOne($object); /** * Deletes one object in the type by id * * @param mixed $id * * @return null **/ function deleteById($id); /** * Inserts an array of objects in the type * * @param array of domain model objects **/ function insertMany(array $objects); }