1 <?php
2
3 namespace CorpusParole\Repositories;
4
5 interface DocumentRepository {
6
7 public function all();
8
9 public function get($id);
10 }