### Description I would like to have it so that the `Symfony\Component\Routing\Attribute\Route` parameter `$env` can be set as an `array` a case for this is that i would like to make a route available for `local` and `testing` env now i would need 2 routes: ```php #[Route('/test, name: 'test, env: 'local')] #[Route('/test', name: 'test-testing', env: 'testing')] ``` It would be nice if you could set: ```php #[Route('/test, name: 'test, env: ['local', 'testing'])] ``` ### Example Old: ```php #[Route('/test, name: 'test, env: 'local')] #[Route('/test', name: 'test-testing', env: 'testing')] ``` New: ```php #[Route('/test, name: 'test, env: ['local', 'testing'])] ```