We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I think there is an issue with the DotEnv component.
use Symfony\Component\Dotenv\Dotenv; $_ENV['LOCAL'] = 'local'; $values = (new Dotenv())->parse('FOO=$LOCAL'));
Expected:
$values = ['FOO' => 'local'];
Actual:
$values = ['FOO' => '1'];
The text was updated successfully, but these errors were encountered:
I will create the pull request soon.
Sorry, something went wrong.
bug #23434 [DotEnv] Fix variable substitution (brieucthomas)
c3ec5c5
This PR was merged into the 3.3 branch. Discussion ---------- [DotEnv] Fix variable substitution | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #23423 | License | MIT | Doc PR | no Commits ------- 1dfcdc7 [DotEnv] Fix variable substitution
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I think there is an issue with the DotEnv component.
Expected:
Actual:
The text was updated successfully, but these errors were encountered: