1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-14 04:34:07 +02:00

[ticket/17176] Resolve psalm issues after PHP version update

PHPBB3-17176
This commit is contained in:
Marc Alexander
2023-08-20 09:54:07 +02:00
parent b82c880375
commit ac9659c38f
4 changed files with 5 additions and 5 deletions

View File

@@ -499,9 +499,9 @@ interface driver_interface
/**
* Ensure query ID can be used by cache
*
* @param resource|int|string $query_id Mixed type query id
* @param mixed $query_id Mixed type query id
*
* @return int|string Query id in string or integer format
*/
public function clean_query_id($query_id);
public function clean_query_id(mixed $query_id): int|string;
}