From d8d67b5f17ec676882529d54ebf4785aa4a0b00d Mon Sep 17 00:00:00 2001 From: rxu Date: Thu, 8 Jun 2023 01:13:18 +0700 Subject: [PATCH] [ticket/17142] Fix tests' mock cache class PHPBB3-17142 --- tests/mock/cache.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/mock/cache.php b/tests/mock/cache.php index 2306fd9009..cc50d0b81b 100644 --- a/tests/mock/cache.php +++ b/tests/mock/cache.php @@ -168,4 +168,8 @@ class phpbb_mock_cache implements \phpbb\cache\driver\driver_interface { return isset($this->data['_bots']) ? $this->data['_bots'] : array(); } + + public function clean_query_id($query_id) + { + } }