mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
[ticket/10714] Remove type hinting to allow the usage of mocks in tests
PHPBB3-10714
This commit is contained in:
parent
f4bc9c1673
commit
c7ae790d16
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ class phpbb_log implements phpbb_log_interface
|
||||||
* @param string $log_table Name of the table we use to store our logs
|
* @param string $log_table Name of the table we use to store our logs
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
public function __construct(dbal $db, phpbb_user $user, phpbb_auth $auth, phpbb_dispatcher $phpbb_dispatcher, $phpbb_root_path, $php_ext, $log_table)
|
public function __construct($db, $user, $auth, $phpbb_dispatcher, $phpbb_root_path, $php_ext, $log_table)
|
||||||
{
|
{
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
$this->user = $user;
|
$this->user = $user;
|
||||||
|
|
Loading…
Add table
Reference in a new issue