aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-03-03 00:58:38 +0100
committerJoshyPHP <s9e.dev@gmail.com>2015-04-02 19:16:02 +0200
commit458cf95b1e0614b8dbecaca36c57f21e8a3a7bb7 (patch)
tree3990bb9cbdbcb2f048c4bda4f85c3a11b00f14a5 /phpBB/phpbb/textformatter
parent825bc45983f961b4d84f5d869dc0cb6111902aa7 (diff)
downloadforums-458cf95b1e0614b8dbecaca36c57f21e8a3a7bb7.tar
forums-458cf95b1e0614b8dbecaca36c57f21e8a3a7bb7.tar.gz
forums-458cf95b1e0614b8dbecaca36c57f21e8a3a7bb7.tar.bz2
forums-458cf95b1e0614b8dbecaca36c57f21e8a3a7bb7.tar.xz
forums-458cf95b1e0614b8dbecaca36c57f21e8a3a7bb7.zip
[ticket/11768] Replaced class names in annotations with their FQN
PHPBB3-11768
Diffstat (limited to 'phpBB/phpbb/textformatter')
-rw-r--r--phpBB/phpbb/textformatter/renderer.php10
-rw-r--r--phpBB/phpbb/textformatter/s9e/factory.php6
-rw-r--r--phpBB/phpbb/textformatter/s9e/parser.php4
3 files changed, 10 insertions, 10 deletions
diff --git a/phpBB/phpbb/textformatter/renderer.php b/phpBB/phpbb/textformatter/renderer.php
index a2375d206b..d3594bb4ae 100644
--- a/phpBB/phpbb/textformatter/renderer.php
+++ b/phpBB/phpbb/textformatter/renderer.php
@@ -26,8 +26,8 @@ abstract class renderer
/**
* Automatically set the smilies path based on config
*
- * @param phpbb\config\config $config
- * @param phpbb\path_helper $path_helper
+ * @param \phpbb\config\config $config
+ * @param \phpbb\path_helper $path_helper
* @return null
*/
public function configure_smilies_path(\phpbb\config\config $config, \phpbb\path_helper $path_helper)
@@ -45,9 +45,9 @@ abstract class renderer
*
* Should set the locale as well as the viewcensor/viewflash/viewimg/viewsmilies options.
*
- * @param phpbb\user $user
- * @param phpbb\config\config $config
- * @param phpbb\auth\auth $auth
+ * @param \phpbb\user $user
+ * @param \phpbb\config\config $config
+ * @param \phpbb\auth\auth $auth
* @return null
*/
public function configure_user(\phpbb\user $user, \phpbb\config\config $config, \phpbb\auth\auth $auth)
diff --git a/phpBB/phpbb/textformatter/s9e/factory.php b/phpBB/phpbb/textformatter/s9e/factory.php
index ce9d34e247..ebed2521b2 100644
--- a/phpBB/phpbb/textformatter/s9e/factory.php
+++ b/phpBB/phpbb/textformatter/s9e/factory.php
@@ -22,7 +22,7 @@ use s9e\TextFormatter\Configurator\Items\AttributeFilters\Regexp as RegexpFilter
class factory implements \phpbb\textformatter\cache
{
/**
- * @var phpbb_cache_driver_interface $cache
+ * @var \phpbb\cache\driver_interface $cache
*/
protected $cache;
@@ -102,8 +102,8 @@ class factory implements \phpbb\textformatter\cache
/**
* Constructor
*
- * @param phpbb\textformatter\data_access $dal
- * @param phpbb\cache\driver\driver_interface $cache
+ * @param \phpbb\textformatter\data_access $dal
+ * @param \phpbb\cache\driver\driver_interface $cache
* @param string $cache_dir Path to the cache dir
* @param string $cache_key_parser Cache key used for the parser
* @param string $cache_key_renderer Cache key used for the renderer
diff --git a/phpBB/phpbb/textformatter/s9e/parser.php b/phpBB/phpbb/textformatter/s9e/parser.php
index de51929994..4362a7870e 100644
--- a/phpBB/phpbb/textformatter/s9e/parser.php
+++ b/phpBB/phpbb/textformatter/s9e/parser.php
@@ -34,9 +34,9 @@ class parser implements \phpbb\textformatter\parser
/**
* Constructor
*
- * @param phpbb\cache\driver_interface $cache
+ * @param \phpbb\cache\driver_interface $cache
* @param string $key Cache key
- * @param phpbb\user $user
+ * @param \phpbb\user $user
* @param factory $factory
* @return null
*/