aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/notifications/method/interface.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/notifications/method/interface.php')
-rw-r--r--phpBB/includes/notifications/method/interface.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/phpBB/includes/notifications/method/interface.php b/phpBB/includes/notifications/method/interface.php
new file mode 100644
index 0000000000..f18d005b8b
--- /dev/null
+++ b/phpBB/includes/notifications/method/interface.php
@@ -0,0 +1,25 @@
+<?php
+/**
+*
+* @package notifications
+* @copyright (c) 2012 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+/**
+* @ignore
+*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
+/**
+* Base notifications method interface
+* @package notifications
+*/
+interface phpbb_notifications_method_interface
+{
+ public function notify($notification);
+}