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
7.2
Hi,
We noticed when passing envs to Process, they cannot be autowired in the subsequent process, even though the envs are available.
Process
Given
#[Autowire(env: 'SOME')] private readonly ?string $some = null,
For:
dump('TRACE-autowire: '.$this->some); dump('TRACE-server:'.($_SERVER['SOME'] ?? null)); dump('TRACE-env:'.($_SERVER['SOME'] ?? null)); dump('TRACE-getenv:'.getenv('SOME'));
We see:
"TRACE-autowire: " "TRACE-server:some-value" "TRACE-env:some-value" "TRACE-getenv:some-value"
We feed Process envs thru RunProcessMessage
RunProcessMessage
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Symfony version(s) affected
7.2
Description
Hi,
We noticed when passing envs to
Process
, they cannot be autowired in the subsequent process, even though the envs are available.Given
For:
We see:
How to reproduce
We feed
Process
envs thruRunProcessMessage
Possible Solution
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: