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