7 lines
121 B
PHP
7 lines
121 B
PHP
<?php
|
|
$env = getenv('APP_ENV') ?: 'staging';
|
|
$env = strtolower($env);
|
|
$path = __DIR__ . 'db.php';
|
|
|
|
return require $path;
|