#891 Fixed wrong return type hint on method inside migration when using postgres

This commit is contained in:
Alejandro Celaya 2020-11-10 15:49:05 +01:00
parent 29bb201581
commit ce1c70fd7c

View File

@ -60,7 +60,10 @@ final class Version20201102113208 extends AbstractMigration
->execute();
}
private function resolveOneApiKeyId(Result $result): ?string
/**
* @return string|int|null
*/
private function resolveOneApiKeyId(Result $result)
{
$results = [];
while ($row = $result->fetchAssociative()) {