tt-rss/classes/ihandler.php
2012-12-23 23:05:51 +04:00

7 lines
110 B
PHP

<?php
interface IHandler {
function csrf_ignore($method);
function before($method);
function after();
}
?>