Skip to content

Commit 81b1da6

Browse files
authored
Fixed malformed brackets
1 parent dac6439 commit 81b1da6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: Bootstraps/Symfony.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ public function getApplication()
8080
$app->booted = true;
8181
}, $app);
8282

83-
if ($trustedProxies = getenv('TRUSTED_PROXIES'])) {
83+
if ($trustedProxies = getenv('TRUSTED_PROXIES')) {
8484
Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_ALL ^ Request::HEADER_X_FORWARDED_HOST);
8585
}
8686

87-
if ($trustedHosts = getenv('TRUSTED_HOSTS'])) {
87+
if ($trustedHosts = getenv('TRUSTED_HOSTS')) {
8888
Request::setTrustedHosts(explode(',', $trustedHosts));
8989
}
9090

0 commit comments

Comments
 (0)