Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Apr 30, 2024
1 parent 5faf09c commit 1b229a7
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 1b229a7

Please sign in to comment.