1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-28 12:10:52 +02:00
ttrss/classes/handler.php
2011-12-13 00:20:53 +04:00

20 lines
230 B
PHP

<?php
class Handler {
protected $link;
protected $args;
function __construct($link, $args) {
$this->link = $link;
$this->args = $args;
}
function before() {
return true;
}
function after() {
return true;
}
}
?>