merge with 3.7.3
This commit is contained in:
		@@ -157,7 +157,7 @@ final class core
 | 
				
			|||||||
			// Initialized the route
 | 
								// Initialized the route
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			if (!empty($parameters)) {
 | 
								if (!empty($parameters)) {
 | 
				
			||||||
				// Recaived parameters
 | 
									// Received parameters
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				// Merging parameters with the route parameters
 | 
									// Merging parameters with the route parameters
 | 
				
			||||||
				$route->parameters = $parameters + $route->parameters;
 | 
									$route->parameters = $parameters + $route->parameters;
 | 
				
			||||||
@@ -256,7 +256,7 @@ final class core
 | 
				
			|||||||
					$request->options = $route->options;
 | 
										$request->options = $route->options;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					// Processing the method of the controller and exit (success)
 | 
										// 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) {
 | 
										foreach ($route->middlewares as $middleware) {
 | 
				
			||||||
						// Iterating over the route middlewares
 | 
											// Iterating over the route middlewares
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user