merge with 3.7.3

This commit is contained in:
2025-11-03 15:05:03 +03:00
parent b61599aac9
commit 42774c8830

View File

@@ -157,7 +157,7 @@ final class core
// Initialized the route
if (!empty($parameters)) {
// Recaived parameters
// Received parameters
// Merging parameters with the route parameters
$route->parameters = $parameters + $route->parameters;
@@ -251,12 +251,12 @@ final class core
try {
// Preparing the route function
$action = function() use ($request, $route): string {
$action = function () use ($request, $route): string {
// Writing the request options from the route options
$request->options = $route->options;
// Processing the method of the controller and exit (success)
$action = fn(): string => (string) $route->controller->{$route->method}(...($route->parameters + $request->parameters));
$action = fn(): string => (string) $route->controller->{$route->method}(...($route->parameters + $route->variables + $request->parameters));
foreach ($route->middlewares as $middleware) {
// Iterating over the route middlewares