1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:25:54 +00:00
Files
tt-rss/classes/ihandler.php

7 lines
120 B
PHP

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