aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-10-14 01:05:34 -0700
committerMatt Friedman <maf675@gmail.com>2015-10-14 01:05:34 -0700
commit28cc98a7ac69f5670ccb2746f8e4158681aa7926 (patch)
treed33570c7d763980ac17e41c2560f490acf0649e3 /phpBB/phpbb/notification
parentb64a37d451132dcf7ef5fc3d6e700a6fb6decd90 (diff)
downloadforums-28cc98a7ac69f5670ccb2746f8e4158681aa7926.tar
forums-28cc98a7ac69f5670ccb2746f8e4158681aa7926.tar.gz
forums-28cc98a7ac69f5670ccb2746f8e4158681aa7926.tar.bz2
forums-28cc98a7ac69f5670ccb2746f8e4158681aa7926.tar.xz
forums-28cc98a7ac69f5670ccb2746f8e4158681aa7926.zip
[ticket/14237] Consistent references to classes in docblocks
PHPBB3-14237
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 080d2ecb1d..ea1b800dc5 100644
--- a/phpBB/phpbb/notification/manager.php
+++ b/phpBB/phpbb/notification/manager.php
@@ -848,7 +848,7 @@ class manager
*
* @param string $notification_type_name
* @param array $data
- * @return \phpbb\notification\type\type_interface
+ * @return type\type_interface
*/
public function get_item_type_class($notification_type_name, $data = array())
{
@@ -863,7 +863,7 @@ class manager
* Helper to get the notifications method class and set it up
*
* @param string $method_name
- * @return \phpbb\notification\method\method_interface
+ * @return method\method_interface
*/
public function get_method_class($method_name)
{
@@ -874,7 +874,7 @@ class manager
* Helper to load objects (notification types/methods)
*
* @param string $object_name
- * @return \phpbb\notification\method\method_interface|\phpbb\notification\type\type_interface
+ * @return method\method_interface|type\type_interface
*/
protected function load_object($object_name)
{