--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/server/src/app/Repositories/DocumentRepository.php Tue Jun 23 17:01:39 2015 +0200
@@ -0,0 +1,10 @@
+<?php
+
+namespace CorpusParole\Repositories;
+
+interface DocumentRepository {
+
+ public function all();
+
+ public function get($id);
+}