]> git.wh0rd.org - tt-rss.git/blob - classes/handler.php
3bd82c725b0e4c9ad1367c0bda4ad14b96bc30be
[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 ?>