Skip to content

Commit 72f749d

Browse files
committed
[Runtime] Fix review comments
1 parent c2b133a commit 72f749d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Runtime/SymfonyRuntime.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public function __construct(array $options = [])
116116

117117
$dotenv->bootEnv($options['project_dir'].'/'.($options['dotenv_path'] ?? '.env'), 'dev', (array) ($options['test_envs'] ?? ['test']), $overrideExistingVars);
118118

119-
if (\is_array($options['dotenv_extra_paths'] ?? null) && [] !== $options['dotenv_extra_paths']) {
119+
if (\is_array($options['dotenv_extra_paths'] ?? null) && $options['dotenv_extra_paths']) {
120120
$options['dotenv_extra_paths'] = array_map(fn (string $path) => $options['project_dir'].'/'.$path, $options['dotenv_extra_paths']);
121121

122122
$overrideExistingVars

0 commit comments

Comments
 (0)