mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
[ticket/12282] Use interface for type hinting
PHPBB3-12282
This commit is contained in:
@@ -11,7 +11,7 @@ namespace phpbb\tree;
|
||||
|
||||
abstract class nestedset implements \phpbb\tree\tree_interface
|
||||
{
|
||||
/** @var \phpbb\db\driver\driver */
|
||||
/** @var \phpbb\db\driver\driver_interface */
|
||||
protected $db;
|
||||
|
||||
/** @var \phpbb\lock\db */
|
||||
@@ -52,7 +52,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface
|
||||
/**
|
||||
* Construct
|
||||
*
|
||||
* @param \phpbb\db\driver\driver $db Database connection
|
||||
* @param \phpbb\db\driver\driver_interface $db Database connection
|
||||
* @param \phpbb\lock\db $lock Lock class used to lock the table when moving forums around
|
||||
* @param string $table_name Table name
|
||||
* @param string $message_prefix Prefix for the messages thrown by exceptions
|
||||
@@ -60,7 +60,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface
|
||||
* @param array $item_basic_data Array with basic item data that is stored in item_parents
|
||||
* @param array $columns Array with column names to overwrite
|
||||
*/
|
||||
public function __construct(\phpbb\db\driver\driver $db, \phpbb\lock\db $lock, $table_name, $message_prefix = '', $sql_where = '', $item_basic_data = array(), $columns = array())
|
||||
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\lock\db $lock, $table_name, $message_prefix = '', $sql_where = '', $item_basic_data = array(), $columns = array())
|
||||
{
|
||||
$this->db = $db;
|
||||
$this->lock = $lock;
|
||||
|
@@ -14,11 +14,11 @@ class nestedset_forum extends \phpbb\tree\nestedset
|
||||
/**
|
||||
* Construct
|
||||
*
|
||||
* @param \phpbb\db\driver\driver $db Database connection
|
||||
* @param \phpbb\db\driver\driver_interface $db Database connection
|
||||
* @param \phpbb\lock\db $lock Lock class used to lock the table when moving forums around
|
||||
* @param string $table_name Table name
|
||||
*/
|
||||
public function __construct(\phpbb\db\driver\driver $db, \phpbb\lock\db $lock, $table_name)
|
||||
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\lock\db $lock, $table_name)
|
||||
{
|
||||
parent::__construct(
|
||||
$db,
|
||||
|
Reference in New Issue
Block a user