refactor(router): remove exit statement from redirect method

This commit is contained in:
kj
2026-09-07 19:59:36 -03:00
parent 70b1016194
commit 5022fdac75

View File

@@ -184,7 +184,6 @@ class Router
public static function redirect(string $path): void
{
header('Location: ' . static::basePath() . ltrim($path, '/'));
exit;
}
/**