Skip to content

Commit b84a5ec

Browse files
committed
fix: remove int cast
1 parent 38d3b6c commit b84a5ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/cycle.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
connection: new Config\Postgres\TcpConnectionConfig(
9898
database: env('DB_DATABASE', 'wod'),
9999
host: env('DB_HOST', '127.0.0.1'),
100-
port: (int) env('DB_PORT', 5432),
100+
port: env('DB_PORT', 5432),
101101
user: env('DB_USERNAME', 'wod'),
102102
password: env('DB_PASSWORD', '')
103103
),
@@ -112,7 +112,7 @@
112112
connection: new Config\MySQL\TcpConnectionConfig(
113113
database: env('DB_DATABASE', 'wod'),
114114
host: env('DB_HOST', '127.0.0.1'),
115-
port: (int) env('DB_PORT', 3306),
115+
port: env('DB_PORT', 3306),
116116
user: env('DB_USERNAME', 'wod'),
117117
password: env('DB_PASSWORD', '')
118118
),
@@ -126,7 +126,7 @@
126126
connection: new Config\SQLServer\TcpConnectionConfig(
127127
database: env('DB_DATABASE', 'wod'),
128128
host: env('DB_HOST', '127.0.0.1'),
129-
port: (int) env('DB_PORT', 1433),
129+
port: env('DB_PORT', 1433),
130130
user: env('DB_USERNAME', 'wod'),
131131
password: env('DB_PASSWORD', '')
132132
),

0 commit comments

Comments
 (0)