Open dreamsbond opened 4 years ago
/**
* This middleware will be executed on every request even when no matching route is found.
*
* @return string[]
*/
public static function getMiddleware(): array
{
return [
CookieAuth::class,
];
}
is the getMiddleware() the appropriate entry point for handling catch-all route?
Curious, if limoncello originally support catch-all / wildcard route?