aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/notification/method/base.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-10-05 00:07:48 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-10-05 00:07:48 -0500
commit3f2e3ad633930744e1ed92cc529ca473ccfa09e0 (patch)
treedd66211547856d3e484aa52fefbb2f6352ee9205 /phpBB/includes/notification/method/base.php
parentceb56da965f12245bca6b735cb71f3bbaf505307 (diff)
downloadforums-3f2e3ad633930744e1ed92cc529ca473ccfa09e0.tar
forums-3f2e3ad633930744e1ed92cc529ca473ccfa09e0.tar.gz
forums-3f2e3ad633930744e1ed92cc529ca473ccfa09e0.tar.bz2
forums-3f2e3ad633930744e1ed92cc529ca473ccfa09e0.tar.xz
forums-3f2e3ad633930744e1ed92cc529ca473ccfa09e0.zip
[ticket/11103] Working on test case
Fixing extension type/method naming scheme so they can be autoloaded. Other bugs PHPBB3-11103
Diffstat (limited to 'phpBB/includes/notification/method/base.php')
-rw-r--r--phpBB/includes/notification/method/base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/notification/method/base.php b/phpBB/includes/notification/method/base.php
index 9f1db6d9f5..6410b1f519 100644
--- a/phpBB/includes/notification/method/base.php
+++ b/phpBB/includes/notification/method/base.php
@@ -50,7 +50,7 @@ abstract class phpbb_notification_method_base implements phpbb_notification_meth
*/
protected $queue = array();
- public function __construct(phpbb_notification_manager $notification_manager, dbal $db, phpbb_cache_driver_interface $cache, phpbb_template $template, phpbb_extension_manager $extension_manager, phpbb_user $user, phpbb_auth $auth, phpbb_config $config, $phpbb_root_path, $php_ext)
+ public function __construct(phpbb_notification_manager $notification_manager, dbal $db, phpbb_cache_driver_interface $cache, phpbb_template $template, phpbb_extension_manager $extension_manager, $user, phpbb_auth $auth, phpbb_config $config, $phpbb_root_path, $php_ext)
{
$this->notification_manager = $notification_manager;
$this->db = $db;