tt-rss/classes/IHandler.php
2023-10-25 12:55:09 +03:00

7 lines
139 B
PHP

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