1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-16 13:44:12 +02:00

[ticket/11768] Updated various annotations

PHPBB3-11768
This commit is contained in:
JoshyPHP
2015-03-06 13:08:18 +01:00
parent 1b4bdff3b3
commit 40c54898cc
5 changed files with 24 additions and 28 deletions

View File

@@ -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)
{