You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #49625 [DependencyInjection] Keep track of decorated ids (nicolas-grekas)
This PR was merged into the 6.3 branch.
Discussion
----------
[DependencyInjection] Keep track of decorated ids
| Q | A
| ------------- | ---
| Branch? | 6.3
| Bug fix? | no
| New feature? | yes
| Deprecations? | no
| Tickets | -
| License | MIT
| Doc PR | -
When a service "foo" is decorated by a service "bar", all references to "foo" are replaced by references to "bar".
This has visible side effects e.g. when running `debug:autowiring`, before this PR:
```
Symfony\Contracts\HttpClient\HttpClientInterface (.debug.http_client)
```
After:
```
Symfony\Contracts\HttpClient\HttpClientInterface (http_client)
```
Details matter ;)
This PR replaces #49622 since it's a less invasive way to achieve this behavior.
Commits
-------
1ac07d3 [DependencyInjection] Keep track of decorated ids
0 commit comments