-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[DI] Confusing error message when an argument can't be autowired #22848
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
Comments
I've also gotten this exact bad error. I'll check into it! |
Another example of this confusing error message. I'm refactoring the console commands to use DI instead of extending from ContainerAware. I added this: public function __construct(EntityManagerInterface $em)
{
parent::__construct();
$this->entityManager = $em;
} But somehow PHPStorm didn't import the
|
Fix in #22857. This affects any service that's inlined - i.e. any service that is only be referenced by only one other service. For example, the Command class is only referenced by the Command |
This PR was squashed before being merged into the 3.3 branch (closes #22857). Discussion ---------- [DI] Fix autowire error for inlined services | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #22848 | License | MIT | Doc PR | n/a The `AutowirePass` defers autowiring exceptions until later so that we don't throw autowiring exceptions for services that are ultimately removed. But, if a service is *inlined*, then it appears to be removed, and so we don't throw the exception. This fixes that. It's an easy fix - but it's a bit ugly. We're adding a bit more "state" to the passes... simply because there is some information that needs to be shared through the compiler process. There might be a better way of doing this in the future (e.g. storing some metadata on the `Compiler`), but this *does* work well. Commits ------- 4bcef3d [DI] Fix autowire error for inlined services
In symfony/demo#562 we're updating the Symfony Demo app to 3.3.0 RC1 and all the new DI features. During the upgrade I suffered lots of errors ... but the error messages were perfect. Examples:
However, when I removed this original service config for our Twig extension:
I saw this confusing error:
This was fixed when I added this:
Why did I see a different error message in this case? Thanks!
The text was updated successfully, but these errors were encountered: