A method should perform one task to enhance clarity and maintainability.
The single responsibility principle suggests that each method should focus on a single task. For example, a method like `calculateTotalPrice` should only compute the total price, not handle payment processing. This makes your code easier to understand and maintain.
Additional Notes
Why does single responsibility on method design matter in practice?