Why this matters
Improves readability, evolution, and validation.
Replace long parameter lists with request objects or records; validate them as a unit.
Improves readability, evolution, and validation.
Side-by-side examples engineers can pattern-match during review.
Create(string name, string street, string city, string zip, string country)Create(CreateCustomerRequest request)Method(a,b,c,d,e)Method(Request req)From the same buckets as this rule.