diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2023-10-25 12:55:09 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2023-10-25 12:55:09 +0300 |
| commit | 865ecc87963dc3b26e66296616eef2a1cc41ac3f (patch) | |
| tree | bf2ecd8a391103bdb2c8b70cd33c47467310754b /classes/IHandler.php | |
| parent | 0a5507d3bd79d04c860455664f919bf8e7274fda (diff) | |
move to psr-4 autoloader
Diffstat (limited to 'classes/IHandler.php')
| -rw-r--r-- | classes/IHandler.php | 6 |
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; +} |