- Issue created by @mondrake
- 🇮🇹Italy mondrake 🇮🇹
Opened ✨ Stop using FQCN in @param @var @return annotations Active in Coder's issue queue to match this.
- 🇦🇹Austria klausi 🇦🇹 Vienna
I think I agree with this proposal. We could simply drop the check for FQN names in doc comments from Coder. Tools like PHPStan are better in verifying that the class names used there are valid references.
- 🇳🇱Netherlands kingdutch
I used to be against this because it led to codebases having `use` import statements for types that weren't used in code but only in comments. However:
- That was often specifically for annotations which are already being replaced by Attributes
- That was often because PHP did not yet support the type information within the language where now most PHPDoc comments will have a matching parameter or return type hint for which the
use
statement is already needed - A reference in a comment is still a "usage' because it indicates some kind of contract, so for being able to find "Where something is used" with static analysis tools it's still important in case of deprecations and such; PHPStan already does these things for us which further proves that this is no longer a problem
Given those developments within PHP, I'm also happy to +1 this proposal :D
- 🇦🇺Australia acbramley
Big +1 on this, we've got some wildly long union types, could this also apply to @property annotations?
- 🇳🇱Netherlands kingdutch
Moved into new coding standards template and added myself as supporter.
Generalised the title to PHPDoc annotations so we don't need to list all
@
annotations that it may support. - 🇮🇹Italy mondrake 🇮🇹
BTW Rector here can help a lot, https://getrector.com/documentation/import-names
Working with the configuration of
withImportNames
one can get (or not) existing FQCNs in PHPDoc be split between theuse
import and the remaining class name in the docs, can remove (or not) unuseduse
imports.Once this is finalized, a single rector run could just clean the entire codebase.
- 🇺🇸United States dww
- Adding myself as another (enthusiastic!) supporter. I never understood why we required FQCNs for these.
- Fixed the dates for supporters (h/t https://xkcd.com/1179 😆)
- Started identifying the docs that need updating.
Tagging for a summary update since I'm out of time to start fleshing out the proposed changes. Also worth reviewing that I found all the spots we need to fix.
Thanks!
-Derek