about summary refs log tree commit diff stats
path: root/wiki/inc/Action/Check.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Action/Check.php')
-rw-r--r--wiki/inc/Action/Check.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/wiki/inc/Action/Check.php b/wiki/inc/Action/Check.php
deleted file mode 100644
index 36ae8e8..0000000
--- a/wiki/inc/Action/Check.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-namespace dokuwiki\Action;
-
-use dokuwiki\Action\Exception\ActionAbort;
-
-/**
- * Class Check
- *
- * Adds some debugging info before aborting to show
- *
- * @package dokuwiki\Action
- */
-class Check extends AbstractAction {
-
-    /** @inheritdoc */
-    public function minimumPermission() {
-        return AUTH_READ;
-    }
-
-    public function preProcess() {
-        check();
-        throw new ActionAbort();
-    }
-
-}