Skip to content

Commit f1a9990

Browse files
[DI] Dont use JSON_BIGINT_AS_STRING
1 parent a7afe6b commit f1a9990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EnvVarProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public function getEnv($prefix, $name, \Closure $getEnv)
119119
}
120120

121121
if ('json' === $prefix) {
122-
$env = json_decode($env, true, JSON_BIGINT_AS_STRING);
122+
$env = json_decode($env, true);
123123

124124
if (JSON_ERROR_NONE !== json_last_error()) {
125125
throw new RuntimeException(sprintf('Invalid JSON in env var "%s": '.json_last_error_msg(), $name));

0 commit comments

Comments
 (0)