aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter
diff options
context:
space:
mode:
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
*/