Implement save method in collection reference repository

This commit is contained in:
Thibaud Fabre
2015-07-09 20:13:46 +02:00
parent c5cab178a9
commit 07c0691092
5 changed files with 77 additions and 17 deletions

View File

@@ -27,4 +27,10 @@ interface CollectionReferenceRepository
* @return CollectionReference|null
*/
public function findByCollectionId($databoxId, $collectionId);
/**
* @param CollectionReference $reference
* @return void
*/
public function save(CollectionReference $reference);
}