1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:55:55 +00:00
Files
tt-rss/classes/handler.php
2013-04-18 23:19:14 +04:00

25 lines
305 B
PHP

<?php
class Handler implements IHandler {
protected $dbh;
protected $args;
function __construct($args) {
$this->dbh = Db::get();
$this->args = $args;
}
function csrf_ignore($method) {
return true;
}
function before($method) {
return true;
}
function after() {
return true;
}
}
?>