minor #37219 FrameworkBundle fix incorrect nested arrays in php config (GromNaN)

This PR was merged into the 5.2-dev branch.

Discussion
----------

FrameworkBundle fix incorrect nested arrays in php config

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | Fix https://github.com/symfony/symfony/pull/37201#discussion_r438652771
| License       | MIT

Commits
-------

20459884d2 Fix invalid syntax
This commit is contained in:
Fabien Potencier 2020-06-11 16:36:48 +02:00
commit 596cdb04b7

View File

@ -28,6 +28,6 @@ return static function (ContainerConfigurator $container) {
->args([abstract_arg('Decryption env var, set in FrameworkExtension')])
->set('secrets.local_vault', DotenvVault::class)
->args([[abstract_arg('.env file path, set in FrameworkExtension')]])
->args([abstract_arg('.env file path, set in FrameworkExtension')])
;
};