diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-03-06 13:08:18 +0100 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-04-02 19:16:03 +0200 |
commit | 40c54898ccd80744ba159784d631328e0338bad2 (patch) | |
tree | f379a36dee3dc1ca325fa89e621b4b609365cb74 /phpBB/phpbb/textformatter/data_access.php | |
parent | 1b4bdff3b3d01cd422f7a49a1de14b3edbd76804 (diff) | |
download | forums-40c54898ccd80744ba159784d631328e0338bad2.tar forums-40c54898ccd80744ba159784d631328e0338bad2.tar.gz forums-40c54898ccd80744ba159784d631328e0338bad2.tar.bz2 forums-40c54898ccd80744ba159784d631328e0338bad2.tar.xz forums-40c54898ccd80744ba159784d631328e0338bad2.zip |
[ticket/11768] Updated various annotations
PHPBB3-11768
Diffstat (limited to 'phpBB/phpbb/textformatter/data_access.php')
-rw-r--r-- | phpBB/phpbb/textformatter/data_access.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/phpBB/phpbb/textformatter/data_access.php b/phpBB/phpbb/textformatter/data_access.php index 2dfba27960..8938d66935 100644 --- a/phpBB/phpbb/textformatter/data_access.php +++ b/phpBB/phpbb/textformatter/data_access.php @@ -27,7 +27,7 @@ class data_access protected $bbcodes_table; /** - * @var \phpbb_db_driver_interface + * @var \phpbb\db\driver\driver_interface */ protected $db; @@ -54,13 +54,12 @@ class data_access /** * Constructor * - * @param \phpbb\db\driver\driver_interface $db Database connection - * @param string $bbcodes_table Name of the BBCodes table - * @param string $smilies_table Name of the smilies table - * @param string $styles_table Name of the styles table - * @param string $words_table Name of the words table - * @param string $styles_path Path to the styles dir - * @return null + * @param \phpbb\db\driver\driver_interface $db Database connection + * @param string $bbcodes_table Name of the BBCodes table + * @param string $smilies_table Name of the smilies table + * @param string $styles_table Name of the styles table + * @param string $words_table Name of the words table + * @param string $styles_path Path to the styles dir */ public function __construct(\phpbb\db\driver\driver_interface $db, $bbcodes_table, $smilies_table, $styles_table, $words_table, $styles_path) { |