class WebConsole::Middleware
def create_regular_or_whiny_request(env)
Experimental RBS support (using type sampling data from the type_fusion
project).
def create_regular_or_whiny_request: (Hash env) -> WebConsole::WhinyRequest
This signature was generated using 1 sample from 1 application.
def create_regular_or_whiny_request(env) request = Request.new(env) whiny_requests ? WhinyRequest.new(request) : request end