ttrss/classes/ihandler.php

7 lines
120 B
PHP

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