9 lines
157 B
PHP
9 lines
157 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use MyPrayerJournal\Auth;
|
|
|
|
require '../../start.php';
|
|
if ($_SERVER['REQUEST_METHOD'] <> 'GET') not_found();
|
|
|
|
Auth::logOff();
|