diff options
author | LEZY Thomas <thomas.lezy@ensimag.grenoble-inp.fr> | 2014-06-04 16:24:33 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-09-19 11:09:29 +0200 |
commit | 4a76763a8a404a04f141825f572ff65620f400c4 (patch) | |
tree | 834e5b4bfbc1990860864791f68380855c1a04fc /phpBB | |
parent | 98f02ece97cd92de6f71632247a439a1ba25a408 (diff) | |
download | forums-4a76763a8a404a04f141825f572ff65620f400c4.tar forums-4a76763a8a404a04f141825f572ff65620f400c4.tar.gz forums-4a76763a8a404a04f141825f572ff65620f400c4.tar.bz2 forums-4a76763a8a404a04f141825f572ff65620f400c4.tar.xz forums-4a76763a8a404a04f141825f572ff65620f400c4.zip |
[ticket/12657] Add a test file for base case
PHPBB3-12657
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; |