ttrss/classes/handler.php

16 lines
191 B
PHP
Raw Normal View History

2011-12-12 19:32:29 +00:00
<?php
class Handler {
protected $link;
protected $args;
function __construct($link, $args) {
$this->link = $link;
$this->args = $args;
}
function before() {
return true;
}
}
?>