tt-rss/classes/ihandler.php

8 lines
110 B
PHP
Raw Normal View History

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