1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-21 11:26:38 +02:00
ttrss/classes/ihandler.php

7 lines
107 B
PHP
Raw Normal View History

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