summaryrefslogtreecommitdiff
path: root/classes/ihandler.php
blob: 2151433703ccdd10fcba0f8d6b28c01a2dbe069b (plain)
1
2
3
4
5
6
<?php
interface IHandler {
	function csrf_ignore(string $method): bool;
	function before(string $method): bool;
	function after(): bool;
}