13 lines
172 B
PHP
13 lines
172 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Core\Auth;
|
|
|
|
require_once dirname(__DIR__, 2) . '/app/bootstrap.php';
|
|
|
|
Auth::logout();
|
|
|
|
header('Location: /admin/login.php');
|
|
exit;
|