aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cron
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-07-01 20:47:57 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-07-01 20:47:57 +0200
commitb83c623480b4284cfe457c8b59a03c8c1761fad0 (patch)
treea5646d5e10ed1d1c7a28a3568fa87e2713101e5f /phpBB/phpbb/cron
parent54a143c9685987a309ae67f09e49424dbf0986c1 (diff)
parent2b729c67bd46c3ee936717d2cf72890bc8a521ed (diff)
downloadforums-b83c623480b4284cfe457c8b59a03c8c1761fad0.tar
forums-b83c623480b4284cfe457c8b59a03c8c1761fad0.tar.gz
forums-b83c623480b4284cfe457c8b59a03c8c1761fad0.tar.bz2
forums-b83c623480b4284cfe457c8b59a03c8c1761fad0.tar.xz
forums-b83c623480b4284cfe457c8b59a03c8c1761fad0.zip
Merge pull request #2681 from Nicofuma/ticket/12790
[ticket/12790] Use \phpbb\db\driver\driver_interface in prune_shadow_topics * Nicofuma/ticket/12790: [ticket/12790] Use \phpbb\db\driver\driver_interface in prune_shadow_topics
Diffstat (limited to 'phpBB/phpbb/cron')
-rw-r--r--phpBB/phpbb/cron/task/core/prune_shadow_topics.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/cron/task/core/prune_shadow_topics.php b/phpBB/phpbb/cron/task/core/prune_shadow_topics.php
index 381483c798..83a2460454 100644
--- a/phpBB/phpbb/cron/task/core/prune_shadow_topics.php
+++ b/phpBB/phpbb/cron/task/core/prune_shadow_topics.php
@@ -45,11 +45,11 @@ class prune_shadow_topics extends \phpbb\cron\task\base implements \phpbb\cron\t
* @param string $phpbb_root_path The root path
* @param string $php_ext The PHP extension
* @param \phpbb\config\config $config The config
- * @param \phpbb\db\driver\driver $db The db connection
+ * @param \phpbb\db\driver\driver_interface $db The db connection
* @param \phpbb\log\log $log The phpBB log system
* @param \phpbb\user $user The phpBB user object
*/
- public function __construct($phpbb_root_path, $php_ext, \phpbb\config\config $config, \phpbb\db\driver\driver $db, \phpbb\log\log $log, \phpbb\user $user)
+ public function __construct($phpbb_root_path, $php_ext, \phpbb\config\config $config, \phpbb\db\driver\driver_interface $db, \phpbb\log\log $log, \phpbb\user $user)
{
$this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = $php_ext;