aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/notifications/method/base.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-10-04 13:39:54 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-10-04 13:39:54 -0500
commit37e24736058f4e41c67023ce48edeb75e44bbe75 (patch)
treecef7b79b1fa28f6f654044cde630b23cd5e834ff /phpBB/includes/notifications/method/base.php
parent1aa5c005cb560dfea0ab0b35839a8b354b24e4a4 (diff)
downloadforums-37e24736058f4e41c67023ce48edeb75e44bbe75.tar
forums-37e24736058f4e41c67023ce48edeb75e44bbe75.tar.gz
forums-37e24736058f4e41c67023ce48edeb75e44bbe75.tar.bz2
forums-37e24736058f4e41c67023ce48edeb75e44bbe75.tar.xz
forums-37e24736058f4e41c67023ce48edeb75e44bbe75.zip
[ticket/11103] Rename classes
phpbb_notifications_service -> phpbb_notification_manager phpbb_notifications_ -> phpbb_notification_ PHPBB3-11103
Diffstat (limited to 'phpBB/includes/notifications/method/base.php')
-rw-r--r--phpBB/includes/notifications/method/base.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/notifications/method/base.php b/phpBB/includes/notifications/method/base.php
index b860fcffda..b502d3afd0 100644
--- a/phpBB/includes/notifications/method/base.php
+++ b/phpBB/includes/notifications/method/base.php
@@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
* Base notifications method class
* @package notifications
*/
-abstract class phpbb_notifications_method_base implements phpbb_notifications_method_interface
+abstract class phpbb_notification_method_base implements phpbb_notification_method_interface
{
protected $phpbb_container;
protected $service;
@@ -75,9 +75,9 @@ abstract class phpbb_notifications_method_base implements phpbb_notifications_me
/**
* Add a notification to the queue
*
- * @param phpbb_notifications_type_interface $notification
+ * @param phpbb_notification_type_interface $notification
*/
- public function add_to_queue(phpbb_notifications_type_interface $notification)
+ public function add_to_queue(phpbb_notification_type_interface $notification)
{
$this->queue[] = $notification;
}