diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-03-03 00:58:38 +0100 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-04-02 19:16:02 +0200 |
commit | 458cf95b1e0614b8dbecaca36c57f21e8a3a7bb7 (patch) | |
tree | 3990bb9cbdbcb2f048c4bda4f85c3a11b00f14a5 /phpBB/phpbb/textformatter/renderer.php | |
parent | 825bc45983f961b4d84f5d869dc0cb6111902aa7 (diff) | |
download | forums-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/renderer.php')
-rw-r--r-- | phpBB/phpbb/textformatter/renderer.php | 10 |
1 files changed, 5 insertions, 5 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) |