|
97 | 97 | connection: new Config\Postgres\TcpConnectionConfig(
|
98 | 98 | database: env('DB_DATABASE', 'wod'),
|
99 | 99 | host: env('DB_HOST', '127.0.0.1'),
|
100 |
| - port: (int) env('DB_PORT', 5432), |
| 100 | + port: env('DB_PORT', 5432), |
101 | 101 | user: env('DB_USERNAME', 'wod'),
|
102 | 102 | password: env('DB_PASSWORD', '')
|
103 | 103 | ),
|
|
112 | 112 | connection: new Config\MySQL\TcpConnectionConfig(
|
113 | 113 | database: env('DB_DATABASE', 'wod'),
|
114 | 114 | host: env('DB_HOST', '127.0.0.1'),
|
115 |
| - port: (int) env('DB_PORT', 3306), |
| 115 | + port: env('DB_PORT', 3306), |
116 | 116 | user: env('DB_USERNAME', 'wod'),
|
117 | 117 | password: env('DB_PASSWORD', '')
|
118 | 118 | ),
|
|
126 | 126 | connection: new Config\SQLServer\TcpConnectionConfig(
|
127 | 127 | database: env('DB_DATABASE', 'wod'),
|
128 | 128 | host: env('DB_HOST', '127.0.0.1'),
|
129 |
| - port: (int) env('DB_PORT', 1433), |
| 129 | + port: env('DB_PORT', 1433), |
130 | 130 | user: env('DB_USERNAME', 'wod'),
|
131 | 131 | password: env('DB_PASSWORD', '')
|
132 | 132 | ),
|
|
0 commit comments