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