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

[ticket/17525] Fix tests

PHPBB-17525
This commit is contained in:
rxu
2025-07-01 16:12:06 +07:00
parent 4274faa715
commit e9157f4d10
3 changed files with 12 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ class doctrine implements tools_interface
}
/**
* @return Connection
* {@inheritDoc}
*/
public function get_connection(): Connection
{

View File

@@ -226,4 +226,11 @@ interface tools_interface
* @return void
*/
public function sql_truncate_table(string $table_name): void;
/**
* Gets current Doctrine DBAL connection
*
* @return \Doctrine\DBAL\Connection
*/
public function get_connection(): \Doctrine\DBAL\Connection;
}