17 lines
329 B
PHP
17 lines
329 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace View;
|
|
|
|
use Model\Context;
|
|
|
|
class LogoutRedirection implements Sendable
|
|
{
|
|
public function send(): void
|
|
{
|
|
http_response_code(303); // "see other" redirection
|
|
setcookie('sessid', '', 1); // delete cookie
|
|
header('Location: /'); // redirection to home
|
|
}
|
|
}
|