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

7 lines
120 B
PHP

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