AntiPattern
Missing Return Breaks Flow
missing-return-in-async-flow
Missing a required return causes async control flow to short-circuit—promises (fetch), error recovery (Mono.empty), or header/body writes can never complete as expected, leading to silent failures, incorrect responses, or runtime TypeErrors.