diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-12-11 10:25:38 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-12-11 10:25:38 +0100 |
commit | c7ae790d16f662ef1cdb2e697f3276b9e618f4dd (patch) | |
tree | 4e1cc5d9465f2176599d7db4a391522df0cc3ea1 | |
parent | f4bc9c1673c18ed24a2ba1680f6b9a5de5c491bf (diff) | |
download | forums-c7ae790d16f662ef1cdb2e697f3276b9e618f4dd.tar forums-c7ae790d16f662ef1cdb2e697f3276b9e618f4dd.tar.gz forums-c7ae790d16f662ef1cdb2e697f3276b9e618f4dd.tar.bz2 forums-c7ae790d16f662ef1cdb2e697f3276b9e618f4dd.tar.xz forums-c7ae790d16f662ef1cdb2e697f3276b9e618f4dd.zip |
[ticket/10714] Remove type hinting to allow the usage of mocks in tests
PHPBB3-10714
-rw-r--r-- | phpBB/includes/log/log.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/log/log.php b/phpBB/includes/log/log.php index 3d9620a2ee..beb2a659e1 100644 --- a/phpBB/includes/log/log.php +++ b/phpBB/includes/log/log.php @@ -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; |