LL007
Too many parameters
Object Pascal — Delphi & Free Pascal
Warning
Maintainability
High-arity signatures are difficult to use correctly and evolve
high-arity signatures are difficult to use correctly and evolve.
Why this severity
high-arity signatures are difficult to use correctly and evolve.
Known false positives
DTO mapping helpers or glue code around external APIs.
Remediation example
type
TCreateUserArgs = record
Name: string;
Email: string;
IsAdmin: Boolean;
end;