Using PHPStorm 2025.1.3 Following code snippets do work - you can CMD/CTRL + Click to go to definition ``` #[Autowire(service: 'some.service.tag')] private SomeService $service; #[Autowire('%app.parameter%')] private string $parameter; ``` But if using parameter with `param:` named argument, it no longer works: ``` #[Autowire(param: 'app.parameter')] private string $parameter; ```