Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 6.4:
  fix merge
  • Loading branch information
xabbuh committed Apr 30, 2024
2 parents c37515b + 1b229a7 commit a89d01d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Command/DebugCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private function getVariables(array $envFiles, ?string $nameFilter): array
continue;
}

$realValue = $_SERVER[$var];
$realValue = $_SERVER[$var] ?? '';
$varDetails = [$var, '<fg=green>'.OutputFormatter::escape($realValue).'</>'];
$varSeen = !isset($dotenvVars[$var]);

Expand Down

0 comments on commit a89d01d

Please sign in to comment.