File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -3754,23 +3754,21 @@ private function getConnectionParamsForDriver(string $driver): array
3754
3754
return [
3755
3755
'host ' => getenv ('MYSQL_HOST ' ),
3756
3756
'user ' => 'root ' ,
3757
- 'password ' => 'Secret.123 ' ,
3757
+ 'password ' => 'secret ' ,
3758
3758
'dbname ' => 'foo ' ,
3759
3759
];
3760
3760
case 'pdo_pgsql ' :
3761
3761
case 'pgsql ' :
3762
3762
return [
3763
3763
'host ' => getenv ('PGSQL_HOST ' ),
3764
3764
'user ' => 'root ' ,
3765
- 'password ' => 'Secret.123 ' ,
3765
+ 'password ' => 'secret ' ,
3766
3766
'dbname ' => 'foo ' ,
3767
3767
];
3768
3768
case 'pdo_sqlite ' :
3769
3769
case 'sqlite3 ' :
3770
3770
return [
3771
3771
'memory ' => true ,
3772
- 'user ' => 'root ' ,
3773
- 'password ' => 'Secret.123 ' ,
3774
3772
'dbname ' => 'foo ' ,
3775
3773
];
3776
3774
case 'pdo_sqlsrv ' :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ services:
7
7
ports :
8
8
- 3306:3306
9
9
environment :
10
- MYSQL_ROOT_PASSWORD : ' Secret.123 '
10
+ MYSQL_ROOT_PASSWORD : ' secret '
11
11
MYSQL_DATABASE : foo
12
12
volumes :
13
13
-
@@ -19,7 +19,7 @@ services:
19
19
ports :
20
20
- 5432:5432
21
21
environment :
22
- POSTGRES_PASSWORD : ' Secret.123 '
22
+ POSTGRES_PASSWORD : ' secret '
23
23
POSTGRES_USER : root
24
24
POSTGRES_DB : foo
25
25
volumes :
You can’t perform that action at this time.
0 commit comments