]> git.wh0rd.org Git - tt-rss.git/blob - classes/handler.php
53b52ea032c113fc6986e495cb206896d5746e79
[tt-rss.git] / classes / handler.php
1 <?php
2 class Handler {
3         protected $link;
4         protected $args;
5
6         function __construct($link, $args) {
7                 $this->link = $link;
8                 $this->args = $args;
9         }
10
11         function before() {
12                 return true;
13         }
14
15         function after() {
16                 return true;
17         }
18 }
19 ?>