ttrss/classes/IHandler.php

7 lines
139 B
PHP
Raw Normal View History

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