diff --git a/src/DbAppPackage.php b/src/DbAppPackage.php index f90d159..2b04032 100644 --- a/src/DbAppPackage.php +++ b/src/DbAppPackage.php @@ -68,10 +68,10 @@ protected function configure() // database $this->install( new AuraSqlModule( - $_ENV['DB_DSN'], - $_ENV['DB_USER'], - $_ENV['DB_PASS'], - $_ENV['DB_READ'] + $this->dsn, + $this->user, + $this->pass, + $this->read ) ); $this->install(new QueryLocatorModule($this->dbDir . '/sql'));