diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-05-04 10:11:28 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-05-04 10:11:28 +0200 |
commit | 232f71dae43df9794184961431aca81d0e4652da (patch) | |
tree | bf49de5e5e66ad37d552d2fda7781fc92f3f4721 /tests/console | |
parent | b3cc20a575da12e7b66f3883dcc7f0eb6ca82ad8 (diff) | |
download | forums-232f71dae43df9794184961431aca81d0e4652da.tar forums-232f71dae43df9794184961431aca81d0e4652da.tar.gz forums-232f71dae43df9794184961431aca81d0e4652da.tar.bz2 forums-232f71dae43df9794184961431aca81d0e4652da.tar.xz forums-232f71dae43df9794184961431aca81d0e4652da.zip |
[ticket/13782] Rename null log to dummy for PHP7 compatibility
PHPBB3-13782
Diffstat (limited to 'tests/console')
-rw-r--r-- | tests/console/cache/purge_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/console/cache/purge_test.php b/tests/console/cache/purge_test.php index 172fb0ecf3..6c92660580 100644 --- a/tests/console/cache/purge_test.php +++ b/tests/console/cache/purge_test.php @@ -91,7 +91,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->user, $this->cache, $this->db, $this->getMock('\phpbb\auth\auth'), new \phpbb\log\null(), $this->config)); + $application->add(new purge($this->user, $this->cache, $this->db, $this->getMock('\phpbb\auth\auth'), new \phpbb\log\dummy(), $this->config)); $command = $application->find('cache:purge'); $this->command_name = $command->getName(); |