aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie/Database/ISearch.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/phorkie/Database/ISearch.php')
-rw-r--r--src/phorkie/Database/ISearch.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/phorkie/Database/ISearch.php b/src/phorkie/Database/ISearch.php
new file mode 100644
index 0000000..b18d43a
--- /dev/null
+++ b/src/phorkie/Database/ISearch.php
@@ -0,0 +1,9 @@
+<?php
+namespace phorkie;
+
+interface Database_ISearch
+{
+ public function search($term, $page = 0, $perPage = 10);
+}
+
+?>