Skip to content

Commit

Permalink
[BC Break] Variable nesting
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzadamodassir authored Nov 2, 2024
1 parent ccc3321 commit 378c3fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Parser/Nested.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ private static function process(array $entries)
\sprintf('Failed to parse undefined environment variable [%s].', $key)
);
}
$entries[$i] = $entries[$key];
$entries[$i] = \preg_replace(self::NESTED, $entries[$key], $entry);
}
}
return Resolve::create($entries);
}
}
?>
?>

0 comments on commit 378c3fc

Please sign in to comment.