gamesshop/src/php/Environment/DatabaseEnvironment.php
2024-10-30 19:40:26 +01:00

21 lines
No EOL
390 B
PHP

<?php
declare(strict_types=1);
namespace GamesShop\Environment;
final readonly class DatabaseEnvironment
{
public function __construct(
public string $driver,
public string $path
)
{
}
public function getDoctrineConfig() {
return [
'driver' => $this->driver,
'path' => $this->path
];
}
}