]> git.wh0rd.org - tt-rss.git/blame - classes/handler.php
add tiny-OOP style backend RPC
[tt-rss.git] / classes / handler.php
CommitLineData
d5112468
AD
1<?php
2class 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?>