19 lines
326 B
PHP
19 lines
326 B
PHP
<?php
|
|
|
|
namespace App\Core;
|
|
|
|
final class Response
|
|
{
|
|
public static function redirect(string $url): never
|
|
{
|
|
header('Location: ' . $url);
|
|
exit;
|
|
}
|
|
|
|
public static function notFound(string $message = 'Seite nicht gefunden.'): void
|
|
{
|
|
http_response_code(404);
|
|
echo $message;
|
|
}
|
|
}
|