Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 17c15b0860 | |||
| b7eda7a944 | |||
| 1123b75d9e |
@@ -256,7 +256,13 @@ final class core
|
||||
$request->options = $route->options;
|
||||
|
||||
// Processing the method of the controller and exit (success)
|
||||
$action = fn(): string => (string) $route->controller->{$route->method}(...($route->parameters + $route->variables + $request->parameters));
|
||||
$action = function() use ($route, $request): string {
|
||||
try {
|
||||
return (string) $route->controller->{$route->method}(...($route->parameters + $route->variables + $request->parameters));
|
||||
} catch (exception $exception) {
|
||||
return (string) $route->controller->{$route->method}($route->parameters + $route->variables + $request->parameters);
|
||||
}
|
||||
};
|
||||
|
||||
foreach ($route->middlewares as $middleware) {
|
||||
// Iterating over the route middlewares
|
||||
|
||||
@@ -38,7 +38,7 @@ trait magic
|
||||
*/
|
||||
public function __set(string $name, mixed $value = null): void
|
||||
{
|
||||
if (property_exists(static, $name)) {
|
||||
if (property_exists(static::static, $name)) {
|
||||
// Exist the property
|
||||
|
||||
// Writing the property
|
||||
|
||||
Reference in New Issue
Block a user