7 lines
110 B
PHP
7 lines
110 B
PHP
<?php
|
|
interface IHandler {
|
|
function csrf_ignore($method);
|
|
function before($method);
|
|
function after();
|
|
}
|
|
?>
|