[ticket/17142] Fix tests' mock cache class

PHPBB3-17142
This commit is contained in:
rxu 2023-06-08 01:13:18 +07:00
parent 7adee3c50d
commit d8d67b5f17
No known key found for this signature in database
GPG key ID: 8117904FEDEFDD17

View file

@ -168,4 +168,8 @@ class phpbb_mock_cache implements \phpbb\cache\driver\driver_interface
{ {
return isset($this->data['_bots']) ? $this->data['_bots'] : array(); return isset($this->data['_bots']) ? $this->data['_bots'] : array();
} }
public function clean_query_id($query_id)
{
}
} }