1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-24 11:56:36 +02:00
ttrss/classes/ihandler.php
2012-12-23 23:05:51 +04:00

8 lines
110 B
PHP

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