1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-23 09:07:43 +02:00

[ticket/12657] Fix the order of the parameters for the constructor

PHPBB3-12657
This commit is contained in:
Tristan Darricau 2014-08-08 13:29:41 +02:00
parent 689eaab3e2
commit c767712c64

@ -85,7 +85,7 @@ class phpbb_console_command_cache_purge_test extends phpbb_test_case
public function get_command_tester()
{
$application = new Application();
$application->add(new purge($this->cache, $this->db, $this->getMock('\phpbb\auth\auth'), new \phpbb\log\null(), $this->getMock('\phpbb\user'), $this->config));
$application->add(new purge($this->getMock('\phpbb\user'), $this->cache, $this->db, $this->getMock('\phpbb\auth\auth'), new \phpbb\log\null(), $this->config));
$command = $application->find('cache:purge');
$this->command_name = $command->getName();