Adjust tests as well

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2017-03-20 02:29:30 -06:00
parent 713f684a8b
commit 1aef2f417b
No known key found for this signature in database
GPG Key ID: 9CE5ED29E7FCD38A
1 changed files with 2 additions and 2 deletions

View File

@ -18,10 +18,10 @@ use Test\TestCase;
class TestCollationRepair extends Collation {
/**
* @param \Doctrine\DBAL\Connection $connection
* @param IDBConnection $connection
* @return string[]
*/
public function getAllNonUTF8BinTables($connection) {
public function getAllNonUTF8BinTables(IDBConnection $connection) {
return parent::getAllNonUTF8BinTables($connection);
}
}