Sam7367238
Sam7367238
Well, I have this code ```php $dispatcher = simpleDispatcher(function(RouteCollector $routeCollector) { $routes = include(BASE_PATH . "/routes/web.php"); foreach ($routes as $route) { $routeCollector -> addRoute(...$route); } }); ``` So how do...
Alright, how is this? ```php $routeDefinition = static function(RouteCollector $routeCollector): void { $routes = include(BASE_PATH . "/routes/web.php"); foreach ($routes as $route) { $routeCollector -> addRoute(...$route); } }; $dispatcher = FastRoute::recommendedSettings($routeDefinition,...
If it's too obvious then close this issue already 😴