diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-10-01 10:24:19 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-10-01 10:24:19 +0200 |
commit | 75fcfb1c1d68f1632e7beae3f59699ddff8e5292 (patch) | |
tree | 14621a284508f98403ad53b2ef98476c4e715290 /phpBB | |
parent | 170b75d0c9bab9d7500748c32bc4de93d1bf5c2f (diff) | |
parent | 834aea70a7d51f775b2b88e467d273233744a107 (diff) | |
download | forums-75fcfb1c1d68f1632e7beae3f59699ddff8e5292.tar forums-75fcfb1c1d68f1632e7beae3f59699ddff8e5292.tar.gz forums-75fcfb1c1d68f1632e7beae3f59699ddff8e5292.tar.bz2 forums-75fcfb1c1d68f1632e7beae3f59699ddff8e5292.tar.xz forums-75fcfb1c1d68f1632e7beae3f59699ddff8e5292.zip |
Merge pull request #2545 from ptitlazy/ticket/12657
[ticket/12657] Add a test file for base case of command cache:purge
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/console/command/cache/purge.php | 4 |
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; |