aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/cache
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-10-01 10:24:27 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-10-01 10:24:27 +0200
commitb1d35363db8b63e51a1f451775651d3ce2af1fd5 (patch)
tree1b294b265fafeb04002861b2f50043ed5c76f46f /phpBB/phpbb/console/command/cache
parentd73194a415ea2c3c74bdb1efeabe932da9a770c2 (diff)
parent75fcfb1c1d68f1632e7beae3f59699ddff8e5292 (diff)
downloadforums-b1d35363db8b63e51a1f451775651d3ce2af1fd5.tar
forums-b1d35363db8b63e51a1f451775651d3ce2af1fd5.tar.gz
forums-b1d35363db8b63e51a1f451775651d3ce2af1fd5.tar.bz2
forums-b1d35363db8b63e51a1f451775651d3ce2af1fd5.tar.xz
forums-b1d35363db8b63e51a1f451775651d3ce2af1fd5.zip
Merge branch 'develop-ascraeus' into develop
Diffstat (limited to 'phpBB/phpbb/console/command/cache')
-rw-r--r--phpBB/phpbb/console/command/cache/purge.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/console/command/cache/purge.php b/phpBB/phpbb/console/command/cache/purge.php
index ec8229200c..d0c2ef6f72 100644
--- a/phpBB/phpbb/console/command/cache/purge.php
+++ b/phpBB/phpbb/console/command/cache/purge.php
@@ -26,7 +26,7 @@ class purge extends \phpbb\console\command\command
/** @var \phpbb\auth\auth */
protected $auth;
- /** @var \phpbb\log\log */
+ /** @var \phpbb\log\log_interface */
protected $log;
/** @var \phpbb\config\config */
@@ -42,7 +42,7 @@ class purge extends \phpbb\console\command\command
* @param \phpbb\log\log $log Logger instance
* @param \phpbb\config\config $config Config instance
*/
- public function __construct(\phpbb\user $user, \phpbb\cache\driver\driver_interface $cache, \phpbb\db\driver\driver_interface $db, \phpbb\auth\auth $auth, \phpbb\log\log $log, \phpbb\config\config $config)
+ public function __construct(\phpbb\user $user, \phpbb\cache\driver\driver_interface $cache, \phpbb\db\driver\driver_interface $db, \phpbb\auth\auth $auth, \phpbb\log\log_interface $log, \phpbb\config\config $config)
{
$this->cache = $cache;
$this->db = $db;