1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:55:55 +00:00
Files
tt-rss/classes/ihandler.php
2017-04-26 20:24:18 +03:00

7 lines
107 B
PHP

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