Skip to content

[DependencyInjection] Improve reporting named autowiring aliases #18563

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions quick_tour/the_architecture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ What other possible classes or interfaces could you use? Find out by running:
# this is just a *small* sample of the output...

Describes a logger instance.
Psr\Log\LoggerInterface (monolog.logger)
Psr\Log\LoggerInterface - alias:monolog.logger

Request stack that controls the lifecycle of requests.
Symfony\Component\HttpFoundation\RequestStack (request_stack)
Symfony\Component\HttpFoundation\RequestStack - alias:request_stack

RouterInterface is the interface that all Router classes must implement.
Symfony\Component\Routing\RouterInterface (router.default)
Symfony\Component\Routing\RouterInterface - alias:router.default

[...]

Expand Down
12 changes: 6 additions & 6 deletions service_container.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ What other services are available? Find out by running:
The following classes & interfaces can be used as type-hints when autowiring:

Describes a logger instance.
Psr\Log\LoggerInterface (logger)
Psr\Log\LoggerInterface - alias:logger

Request stack that controls the lifecycle of requests.
Symfony\Component\HttpFoundation\RequestStack (request_stack)
Symfony\Component\HttpFoundation\RequestStack - alias:request_stack

RouterInterface is the interface that all Router classes must implement.
Symfony\Component\Routing\RouterInterface (router.default)
Symfony\Component\Routing\RouterInterface - alias:router.default

[...]

Expand Down Expand Up @@ -313,13 +313,13 @@ type-hints by running:
# this is just a *small* sample of the output...

Describes a logger instance.
Psr\Log\LoggerInterface (monolog.logger)
Psr\Log\LoggerInterface - alias:monolog.logger

Request stack that controls the lifecycle of requests.
Symfony\Component\HttpFoundation\RequestStack (request_stack)
Symfony\Component\HttpFoundation\RequestStack - alias:request_stack

RouterInterface is the interface that all Router classes must implement.
Symfony\Component\Routing\RouterInterface (router.default)
Symfony\Component\Routing\RouterInterface - alias:router.default

[...]

Expand Down