afa9713c04f76aeb7553dd19f7a73241e1af30f7
[phorkie.git] / src / phorkie / Database / Adapter / Null / Indexer.php
1 <?php
2 namespace phorkie;
3
4 class Database_Adapter_Null_Indexer
5 {
6     public function addRepo(Repository $repo, $crdate = null) {}
7
8     public function updateRepo(Repository $repo, $crdate = null) {}
9
10     public function deleteAllRepos() {}
11     public function deleteRepo(Repository $repo) {}
12 }
13
14 ?>