mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-14 04:00:57 +03:00
#891 Fixed wrong return type hint on method inside migration when using postgres
This commit is contained in:
parent
29bb201581
commit
ce1c70fd7c
1 changed files with 4 additions and 1 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue