agriget/classes/ihandler.php

7 lines
107 B
PHP
Raw Permalink Normal View History

2019-03-22 10:17:29 -04:00
<?php
interface IHandler {
function csrf_ignore($method);
function before($method);
function after();
}