1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-23 11:46:37 +02:00
ttrss/classes/handler.php
2017-04-26 20:24:18 +03:00

23 lines
301 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;
}
}