refactor(router): remove exit statement from redirect method

This commit is contained in:
kj
2026-09-07 20:00:08 -03:00
parent eb882db0c8
commit 1f29622914

View File

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