aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2015-02-22 17:39:45 +0100
committerAndreas Fischer <bantu@phpbb.com>2015-02-22 17:39:45 +0100
commit677337348f8b0f3182b9edda94d8c134f66e39bc (patch)
tree6d5698e6322f2025980d021a4c4fd85785ae0977 /phpBB/phpbb/notification
parent3657d7a85a5489f55ced17326064e63924303928 (diff)
parent702a51b01c0feedc68b5ebc2dcba130cbcb8cdee (diff)
downloadforums-677337348f8b0f3182b9edda94d8c134f66e39bc.tar
forums-677337348f8b0f3182b9edda94d8c134f66e39bc.tar.gz
forums-677337348f8b0f3182b9edda94d8c134f66e39bc.tar.bz2
forums-677337348f8b0f3182b9edda94d8c134f66e39bc.tar.xz
forums-677337348f8b0f3182b9edda94d8c134f66e39bc.zip
Merge branch '3.1.x'
* 3.1.x: [ticket/13644] Always type hint dispatch_interface
Diffstat (limited to 'phpBB/phpbb/notification')
-rw-r--r--phpBB/phpbb/notification/manager.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/notification/manager.php b/phpBB/phpbb/notification/manager.php
index aa52eb61d0..db92170dd8 100644
--- a/phpBB/phpbb/notification/manager.php
+++ b/phpBB/phpbb/notification/manager.php
@@ -38,7 +38,7 @@ class manager
/** @var \phpbb\config\config */
protected $config;
- /** @var \phpbb\event\dispatcher */
+ /** @var \phpbb\event\dispatcher_interface */
protected $phpbb_dispatcher;
/** @var \phpbb\db\driver\driver_interface */
@@ -73,7 +73,7 @@ class manager
* @param ContainerInterface $phpbb_container
* @param \phpbb\user_loader $user_loader
* @param \phpbb\config\config $config
- * @param \phpbb\event\dispatcher $phpbb_dispatcher
+ * @param \phpbb\event\dispatcher_interface $phpbb_dispatcher
* @param \phpbb\db\driver\driver_interface $db
* @param \phpbb\cache\service $cache
* @param \phpbb\user $user
@@ -85,7 +85,7 @@ class manager
*
* @return \phpbb\notification\manager
*/
- public function __construct($notification_types, $notification_methods, ContainerInterface $phpbb_container, \phpbb\user_loader $user_loader, \phpbb\config\config $config, \phpbb\event\dispatcher $phpbb_dispatcher, \phpbb\db\driver\driver_interface $db, \phpbb\cache\service $cache, $user, $phpbb_root_path, $php_ext, $notification_types_table, $notifications_table, $user_notifications_table)
+ public function __construct($notification_types, $notification_methods, ContainerInterface $phpbb_container, \phpbb\user_loader $user_loader, \phpbb\config\config $config, \phpbb\event\dispatcher_interface $phpbb_dispatcher, \phpbb\db\driver\driver_interface $db, \phpbb\cache\service $cache, $user, $phpbb_root_path, $php_ext, $notification_types_table, $notifications_table, $user_notifications_table)
{
$this->notification_types = $notification_types;
$this->notification_methods = $notification_methods;