Is there anything shorter for v4 that I’d have missed?
If, to make things shorter and easier to read, I make a helper class to shorten the syntax, what is the recommended way to access the router then? e.g. make $app a global available to my Helper class? Pass $request to the Helper class?
There is a set of PSR-7 object decorators providing useful convenience methods, such as Response::withRedirect($url, $status). But you still need the RouteParser to create a URL by a route name. So there is no real “shortcut” at all.