Skip to content

Commit

Permalink
Fix: DB auth has problems with the new dotenv config (fix included) c…
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadow243 authored and josaphatim committed Dec 24, 2023
1 parent a7ca9be commit 02a7b0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
| Connection type. Can be "host" to connect to a hostname, or "socket" to
| connect to a unix socket.
*/
'db_conn_type' => env('DB_CONNECTION_TYPE', 'host'),
'db_connection_type' => env('DB_CONNECTION_TYPE', 'host'),

/*
|
Expand Down Expand Up @@ -63,5 +63,5 @@
|
| Database type. can be any supported PDO driver ; (http://php.net/manual/en/pdo.drivers.php)
*/
'db_driver' => env('DRIVER','mysql')
'db_driver' => env('DB_DRIVER','mysql')
];

0 comments on commit 02a7b0d

Please sign in to comment.