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
When running this, it caught some dead imports that my other static analysis tools missed. This is great, but it was quite difficult to track down the source of the error, since some of the class names had a lot of similar matches, and partially-qualified imports (use A\B; new B\C();: A\B\C not found type of stuff) make grepping through the code a bit more complex.
A command to reveal where the missing dependency is present would help a lot; e.g. composer-require-checker find-usage My\Missing\Class
The text was updated successfully, but these errors were encountered:
When running this, it caught some dead imports that my other static analysis tools missed. This is great, but it was quite difficult to track down the source of the error, since some of the class names had a lot of similar matches, and partially-qualified imports (
use A\B; new B\C();
:A\B\C
not found type of stuff) make grepping through the code a bit more complex.A command to reveal where the missing dependency is present would help a lot; e.g.
composer-require-checker find-usage My\Missing\Class
The text was updated successfully, but these errors were encountered: