summaryrefslogtreecommitdiff
path: root/classes/IHandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/IHandler.php')
-rw-r--r--classes/IHandler.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/IHandler.php b/classes/IHandler.php
new file mode 100644
index 000000000..215143370
--- /dev/null
+++ b/classes/IHandler.php
@@ -0,0 +1,6 @@
+<?php
+interface IHandler {
+ function csrf_ignore(string $method): bool;
+ function before(string $method): bool;
+ function after(): bool;
+}