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