How can I find out where types are missing in a large codebase ? #6003
Answered
by
orklah
williamdes
asked this question in
Q&A
-
At phpMyAdmin we have I did not find a way to print missing coverage files, do you have an idea how I can do this ? |
Beta Was this translation helpful? Give feedback.
Answered by
orklah
Jun 28, 2021
Replies: 1 comment 5 replies
-
Running on level 1 should make Psalm emit Mixed* issues (like MixedAssignment) to tell you where the missing types are. EDIT: of course, the obvious MissingReturnType, MissingParamType and MissingPropertyType should be looked into too |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
weirdan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running on level 1 should make Psalm emit Mixed* issues (like MixedAssignment) to tell you where the missing types are.
EDIT: of course, the obvious MissingReturnType, MissingParamType and MissingPropertyType should be looked into too