aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-15 14:42:20 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-15 19:14:56 +0200
commit52e835949715263f43ddfb5e6aaedc1cbb474c71 (patch)
tree19f2188b0c09e92902923c52b165ec5fb1b7046b /phpBB
parent03ad0b3e08e08081d2f947f4933576cb28475143 (diff)
downloadforums-52e835949715263f43ddfb5e6aaedc1cbb474c71.tar
forums-52e835949715263f43ddfb5e6aaedc1cbb474c71.tar.gz
forums-52e835949715263f43ddfb5e6aaedc1cbb474c71.tar.bz2
forums-52e835949715263f43ddfb5e6aaedc1cbb474c71.tar.xz
forums-52e835949715263f43ddfb5e6aaedc1cbb474c71.zip
[ticket/12715] Cleanup comments in \phpbb\notification\*
PHPBB3-12715
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/notification/manager.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/phpBB/phpbb/notification/manager.php b/phpBB/phpbb/notification/manager.php
index b787b624f6..a9294fd458 100644
--- a/phpBB/phpbb/notification/manager.php
+++ b/phpBB/phpbb/notification/manager.php
@@ -12,6 +12,7 @@
*/
namespace phpbb\notification;
+use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Notifications service class
@@ -24,7 +25,7 @@ class manager
/** @var array */
protected $notification_methods;
- /** @var ContainerBuilder */
+ /** @var ContainerInterface */
protected $phpbb_container;
/** @var \phpbb\user_loader */
@@ -62,7 +63,7 @@ class manager
*
* @param array $notification_types
* @param array $notification_methods
- * @param ContainerBuilder $phpbb_container
+ * @param ContainerInterface $phpbb_container
* @param \phpbb\user_loader $user_loader
* @param \phpbb\config\config $config
* @param \phpbb\db\driver\driver_interface $db
@@ -74,7 +75,7 @@ class manager
* @param string $user_notifications_table
* @return \phpbb\notification\manager
*/
- public function __construct($notification_types, $notification_methods, $phpbb_container, \phpbb\user_loader $user_loader, \phpbb\config\config $config, \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\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;
@@ -886,6 +887,7 @@ class manager
*
* @param string $notification_type_name The name
* @return int the notification_type_id
+ * @throws \phpbb\notification\exception
*/
public function get_notification_type_id($notification_type_name)
{