1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/11103] Move notification files to includes/notification/

PHPBB3-11103
This commit is contained in:
Nathan Guse
2012-10-04 13:40:40 -05:00
parent 37e2473605
commit 64820546d7
18 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
<?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_notification_method_interface
{
public function is_available();
public function notify();
}