summaryrefslogtreecommitdiff
path: root/handler/admin/Logout.php
diff options
context:
space:
mode:
Diffstat (limited to 'handler/admin/Logout.php')
-rw-r--r--handler/admin/Logout.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/handler/admin/Logout.php b/handler/admin/Logout.php
deleted file mode 100644
index bb11e43..0000000
--- a/handler/admin/Logout.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-namespace handler\admin;
-
-use admin;
-use csrf;
-use Response;
-
-class Logout extends AdminRequestHandler {
-
- public function get(): Response {
- csrf::check('logout');
- admin::unsetCookie();
- return new \RedirectResponse('/admin/login/');
- }
-
-} \ No newline at end of file