diff options
Diffstat (limited to 'phpBB/includes/notifications/method/interface.php')
-rw-r--r-- | phpBB/includes/notifications/method/interface.php | 24 |
1 files changed, 24 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..2d8a8b605e --- /dev/null +++ b/phpBB/includes/notifications/method/interface.php @@ -0,0 +1,24 @@ +<?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 +{ +} |