Skip to content

Commit

Permalink
BUGFIX: Fix doctrine/dbal v3 compatibility
Browse files Browse the repository at this point in the history
Fixes: #321
  • Loading branch information
bwaidelich committed Oct 7, 2024
1 parent 53fe558 commit 46a7b77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public function getStatus(): Result
$result->addNotice(new Notice((string)$this->connection->getParams()['host'], null, [], 'Host'));
$result->addNotice(new Notice((string)$this->connection->getParams()['port'], null, [], 'Port'));
$result->addNotice(new Notice((string)$this->connection->getDatabase(), null, [], 'Database'));
$result->addNotice(new Notice((string)$this->connection->getDriver()->getName(), null, [], 'Driver'));
$result->addNotice(new Notice((string)$this->connection->getDatabasePlatform()?->getName(), null, [], 'Platform'));
$result->addNotice(new Notice((string)$this->connection->getParams()['user'], null, [], 'Username'));
if ($tableExists) {
$result->addNotice(new Notice('%s (exists)', null, [$this->eventTableName], 'Table'));
Expand Down

0 comments on commit 46a7b77

Please sign in to comment.