introduced configcontroller
This commit is contained in:
parent
4bff4182c8
commit
d1325202ee
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace App\Controller;
|
||||||
|
|
||||||
error_reporting(error_level: E_ALL);
|
error_reporting(error_level: E_ALL);
|
||||||
|
@ -21,9 +22,14 @@ class DatabaseConnection
|
||||||
const TABLE_APIKEYS = self::TABLE_PREFIX . "apikeys";
|
const TABLE_APIKEYS = self::TABLE_PREFIX . "apikeys";
|
||||||
const TABLE_DYNDNS = self::TABLE_PREFIX . "dyndns";
|
const TABLE_DYNDNS = self::TABLE_PREFIX . "dyndns";
|
||||||
|
|
||||||
public function __construct(private array $config)
|
public function __construct(private readonly ConfigController $configController)
|
||||||
{
|
{
|
||||||
extract(array: $this->config);
|
$dbHost = $this->configController->getConfig(configKey: 'dbHost');
|
||||||
|
$dbPort = $this->configController->getConfig(configKey: 'dbPort');
|
||||||
|
$dbDatabase = $this->configController->getConfig(configKey: 'dbDatabase');
|
||||||
|
$dbUser = $this->configController->getConfig(configKey: 'dbUser');
|
||||||
|
$dbPassword = $this->configController->getConfig(configKey: 'dbPassword');
|
||||||
|
|
||||||
// TODO create config => encryption key
|
// TODO create config => encryption key
|
||||||
try {
|
try {
|
||||||
$this->dbConnection = new PDO(
|
$this->dbConnection = new PDO(
|
||||||
|
|
Loading…
Reference in New Issue