Skip to content

Commit

Permalink
[DI] fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed May 30, 2020
1 parent 79f80d3 commit fa31260
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -125,7 +125,7 @@ public function getEnv($prefix, $name, \Closure $getEnv)
$env = json_decode($env, true);

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

if (!\is_array($env)) {
Expand Down

0 comments on commit fa31260

Please sign in to comment.