1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-01 12:40:50 +02:00
ttrss/classes/handler.php

20 lines
230 B
PHP
Raw Normal View History

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