diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2012-09-27 20:31:13 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2012-09-27 20:31:13 +0200 |
| commit | 71c2c412f7098050479f496292bc694095d9ec97 (patch) | |
| tree | 6b935073599cfaff7155156957dcf56b9f14d804 /src/phorkie/Database/Adapter/Null/Indexer.php | |
| parent | 54fca64ff16d95d03588217dfaa21f4729c2f930 (diff) | |
| download | phorkie-71c2c412f7098050479f496292bc694095d9ec97.tar.gz phorkie-71c2c412f7098050479f496292bc694095d9ec97.zip | |
CS fixes
Diffstat (limited to 'src/phorkie/Database/Adapter/Null/Indexer.php')
| -rw-r--r-- | src/phorkie/Database/Adapter/Null/Indexer.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/phorkie/Database/Adapter/Null/Indexer.php b/src/phorkie/Database/Adapter/Null/Indexer.php index afa9713..3b0c990 100644 --- a/src/phorkie/Database/Adapter/Null/Indexer.php +++ b/src/phorkie/Database/Adapter/Null/Indexer.php @@ -3,12 +3,21 @@ namespace phorkie; class Database_Adapter_Null_Indexer { - public function addRepo(Repository $repo, $crdate = null) {} + public function addRepo(Repository $repo, $crdate = null) + { + } - public function updateRepo(Repository $repo, $crdate = null) {} + public function updateRepo(Repository $repo, $crdate = null) + { + } - public function deleteAllRepos() {} - public function deleteRepo(Repository $repo) {} + public function deleteAllRepos() + { + } + + public function deleteRepo(Repository $repo) + { + } } ?> |
