Open
Description
Is there an existing issue for this?
- I have searched the existing issues
Current Behavior
The translate() method in the Neos\Flow\I18n\EelHelper\TranslationParameterToken class has an $overrides argument which is ineffective, because the result of the array_replace_recursive() call is not used to replace the array. (The argument is never used in Flow, so it does not lead to any obviously visible bugs within Flow.)
Expected Behavior
The $overrides argument should work as expected. This should work:
$this->parameters = array_replace_recursive($this->parameters, $overrides);
Steps To Reproduce
No response
Environment
- Flow: 9.0
- PHP: 8.1
Anything else?
No response