1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

[ticket/10714] Remove type hinting to allow the usage of mocks in tests

PHPBB3-10714
This commit is contained in:
Joas Schilling 2012-12-11 10:25:38 +01:00
parent f4bc9c1673
commit c7ae790d16

View File

@ -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
* @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->user = $user;