1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:55:55 +00:00
Files
tt-rss/classes/handler.php
2011-12-12 23:32:29 +04:00

16 lines
191 B
PHP

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