env remove
This commit is contained in:
@@ -167,9 +167,9 @@ class Database extends Config
|
||||
if (ENVIRONMENT === 'testing') {
|
||||
$this->defaultGroup = 'tests';
|
||||
}
|
||||
$this->myfit['hostname'] = getenv('MYFIT_DATABASE_HOSTNAME');
|
||||
$this->myfit['username'] = getenv('MYFIT_DATABASE_USERNAME');
|
||||
$this->myfit['password'] = getenv('MYFIT_DATABASE_PASSWORD');
|
||||
$this->myfit['database'] = getenv('MYFIT_DATABASE');
|
||||
$this->myfit['hostname'] = MYFIT_DATABASE_HOSTNAME; //getenv('MYFIT_DATABASE_HOSTNAME');
|
||||
$this->myfit['username'] = MYFIT_DATABASE_USERNAME; // getenv('MYFIT_DATABASE_USERNAME');
|
||||
$this->myfit['password'] = MYFIT_DATABASE_PASSWORD; // getenv('MYFIT_DATABASE_PASSWORD');
|
||||
$this->myfit['database'] = MYFIT_DATABASE; // getenv('MYFIT_DATABASE');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user