Skip to content

Commit

Permalink
release: 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
benjasper committed Sep 27, 2024
1 parent 86c53fb commit 6428d4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Classes/DependencyFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ class DependencyFactory
public static function createFactory(LoggerInterface|null $logger = null): ?Doctrine
{
$dbParams = [
'dbname' => $GLOBALS['TYPO3_CONF_VARS']['DB']['dbname'],
'user' => $GLOBALS['TYPO3_CONF_VARS']['DB']['user'],
'password' => $GLOBALS['TYPO3_CONF_VARS']['DB']['password'],
'host' => $GLOBALS['TYPO3_CONF_VARS']['DB']['host'],
'dbname' => $GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default']['dbname'],
'user' => $GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default']['user'],
'password' => $GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default']['password'],
'host' => $GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default']['host'],
'driver' => $GLOBALS['TYPO3_CONF_VARS']['DB']['Connections']['Default']['driver'],
];

Expand Down

0 comments on commit 6428d4f

Please sign in to comment.