aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/report/report_handler.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-08-03 21:53:35 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-08-03 21:53:35 +0200
commit55123bc94cfbade9bae44cb8b8924bb58ccdbf15 (patch)
treede9be088893994fa32de55d2cbe7408cd6238d63 /phpBB/phpbb/report/report_handler.php
parent3d4660a703ecd8d6e0273ad183ef38a7a139c81a (diff)
parent8a9cf32b1d6c87367dbfe67d5e567e23fc7a5e66 (diff)
downloadforums-55123bc94cfbade9bae44cb8b8924bb58ccdbf15.tar
forums-55123bc94cfbade9bae44cb8b8924bb58ccdbf15.tar.gz
forums-55123bc94cfbade9bae44cb8b8924bb58ccdbf15.tar.bz2
forums-55123bc94cfbade9bae44cb8b8924bb58ccdbf15.tar.xz
forums-55123bc94cfbade9bae44cb8b8924bb58ccdbf15.zip
Merge pull request #4399 from wesleyfok/ticket/14729
[ticket/14729] Make reports take config base class
Diffstat (limited to 'phpBB/phpbb/report/report_handler.php')
-rw-r--r--phpBB/phpbb/report/report_handler.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/report/report_handler.php b/phpBB/phpbb/report/report_handler.php
index 126a206dbf..854318c559 100644
--- a/phpBB/phpbb/report/report_handler.php
+++ b/phpBB/phpbb/report/report_handler.php
@@ -26,7 +26,7 @@ abstract class report_handler implements report_handler_interface
protected $dispatcher;
/**
- * @var \phpbb\config\db
+ * @var \phpbb\config\config
*/
protected $config;
@@ -60,7 +60,7 @@ abstract class report_handler implements report_handler_interface
* @param \phpbb\user $user
* @param \phpbb\notification\manager $notification
*/
- public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\event\dispatcher_interface $dispatcher, \phpbb\config\db $config, \phpbb\auth\auth $auth, \phpbb\user $user, \phpbb\notification\manager $notification)
+ public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\event\dispatcher_interface $dispatcher, \phpbb\config\config $config, \phpbb\auth\auth $auth, \phpbb\user $user, \phpbb\notification\manager $notification)
{
$this->db = $db;
$this->dispatcher = $dispatcher;