1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 09:15:55 +00:00
Files
tt-rss/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;
}
}
?>