1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-20 07:21:30 +02:00

[ticket/16955] Resolve incompatibilities with doctum

PHPBB3-16955
This commit is contained in:
Marc Alexander
2022-12-27 19:52:14 +01:00
parent eeeb69b4ae
commit cedd447659
6 changed files with 12 additions and 6 deletions

View File

@@ -21,7 +21,8 @@ class table_helper
*
* @param array $column_data Column data.
*
* @return array{string, array} A pair of type and array of column options.
* @return array<string, array> A pair of type and array of column options.
* @psalm-return array{string, array}
*/
public static function convert_column_data(array $column_data, string $dbms_layer): array
{

View File

@@ -54,7 +54,8 @@ class type_converter
*
* @param string $type Legacy type name
*
* @return array{string, array} Pair of type name and options.
* @return array<string, array> Pair of type name and options.
* @psalm-return array{string, array}
*/
public static function convert(string $type, string $dbms): array
{