mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-11-01 12:20:59 +01:00
7 lines
107 B
PHP
7 lines
107 B
PHP
<?php
|
|
interface IHandler {
|
|
function csrf_ignore($method);
|
|
function before($method);
|
|
function after();
|
|
}
|