Open
Description
At the moment, we have:
- ShortVariable: Detects when a field, local, or parameter has a very short name.
- LongVariable: Detects when a field, formal or local variable is declared with a long name.
- ShortMethodName: Detects when very short method names are used.
https://phpmd.org/rules/index.html#naming-rules
But we do not have a LongMethodName
rule.
We should consider adding one, as an extensively long method name could be a sign of doing too much at once.