OOP
authorHeiko Schlittermann (IT Trainingshaus) <hs@schlittermann.de>
Wed, 26 Oct 2011 14:39:43 +0200
changeset 12 873ac3cadb02
parent 11 fb55da5ecb8a
child 13 6216181a7668
OOP
interface.Address_Book.php
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/interface.Address_Book.php	Wed Oct 26 14:39:43 2011 +0200
@@ -0,0 +1,8 @@
+<?
+interface Address_Book {
+	function add_entry($entry);
+	function search_entries($pattern);
+	function delete_entries($ids);
+	function get_all_entries();
+}
+?>