Skip to content

Commit

Permalink
fix StaticDriver::getDatabase return type hint (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaicher committed Mar 2, 2020
1 parent cf3e174 commit 06932e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DAMA/DoctrineTestBundle/Doctrine/DBAL/StaticDriver.php
Expand Up @@ -85,7 +85,7 @@ public function getName(): string
/**
* {@inheritdoc}
*/
public function getDatabase(\Doctrine\DBAL\Connection $conn): string
public function getDatabase(\Doctrine\DBAL\Connection $conn): ?string
{
return $this->underlyingDriver->getDatabase($conn);
}
Expand Down

0 comments on commit 06932e8

Please sign in to comment.